Learn how to filter a DataFrame using multiple conditions with the AND (&) operator.
Filter customers who meet both conditions:
Age greater than 40
Purchase Amount (USD) greater than $150
Display the first 5 rows of the filtered data.
Python Code:
filtered = df[(df['Age'] > 40) & (df['Purchase Amount (USD)'] > 90)]
filtered.head()