Medium
Python List Filtering
Write Python code to filter a list of dictionaries.
📝 प्रॉम्ट सामग्री
Write a Python function that takes a list of dictionaries (e.g., [{'name': 'Alice', 'age': 25}, ...]) and filters it to return only the entries where the 'age' is greater than 30.