Extract rows where Age is greater than 40.
Python Code:
age_above_40 = subset[subset['Age'] > 40]
print("Rows where Age is greater than 40:")
age_above_40