Filter rows where customers are between 20 and 35 years old and spent more than $200.
Python Code:
filtered_rows = subset[(subset['Age'].between(20, 30)) & (subset['Purchase Amount (USD)'] > 90)]
print("Rows where Age is between 20 and 35 and Purchase Amount is more than $200:")
filtered_rows