Objective:

Learn how to filter a DataFrame using multiple conditions with the AND (&) operator.

Instructions:

  1. Filter customers who meet both conditions:

  2. Display the first 5 rows of the filtered data.

Python Code:

filtered = df[(df['Age'] > 40) & (df['Purchase Amount (USD)'] > 90)]

filtered.head()