Merging DataFrames:Create two Pandas DataFrames: one named d…

Merging DataFrames:Create two Pandas DataFrames: one named df_customers with columns “CustomerID” and “Name”, and another named df_orders with columns “CustomerID”, “OrderID”, and “Amount”. Write Python code to merge these DataFrames on the “CustomerID” column and print the resulting merged DataFrame.

Tuple Creation and Access:Write a Python code snippet that c…

Tuple Creation and Access:Write a Python code snippet that creates a tuple named customer with the following values: Customer ID: “C010” Name: “Alice Smith” Email: “alice@example.com” Loyalty member status: True Then, write code to print the customer’s name and email.