filtered_df = df[df['Age'] > 30]
This is vectorized and efficient for filtering rows in Pandas DataFrames.