Use defaultdict(list) to group these (category, item) pairs: ('fruit', 'apple'), ('veg', 'carrot'),
A medium Python interview practice problem on DataDriven. Write and execute real python code with instant grading.
- Domain
- Python
- Difficulty
- medium
Problem
Use defaultdict(list) to group these (category, item) pairs: ('fruit', 'apple'), ('veg', 'carrot'), ('fruit', 'banana'), ('veg', 'pea'), ('fruit', 'cherry'). Print the dict with keys sorted alphabetically.
Practice This Problem
Solve this Python problem with real code execution. DataDriven runs your Python code in a real environment and grades it automatically.