medium
Python List Filtering
Create a Python script to filter a list of dictionaries based on specific criteria.
📝 프롬프트 내용
Given a list of employee dictionaries with keys 'name', 'department', and 'salary', write a Python list comprehension that creates a new list containing only the names of employees in the 'Sales' department who earn more than 50000.