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.