Learn how to filter a DataFrame using multiple conditions with the OR (|) operator.
Filter customers who meet at least one of the following conditions:
Age less than 25
Purchase Amount (USD) greater than $500
Display the first 5 rows of the filtered data.
Python Code:
filtered = df[(df['Age'] < 25) | (df['Purchase Amount (USD)'] > 500)]
filtered.head()