Objective:

Learn how to filter a DataFrame using multiple conditions with the OR (|) operator.

Instructions:

  1. Filter customers who meet at least one of the following conditions:

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

Python Code:

filtered = df[(df['Age'] < 25) | (df['Purchase Amount (USD)'] > 500)]

filtered.head()