
๐ Dictionaries ๐ Keys & Values
Part A: Create a dictionary called catalog with these Roblox items and their prices:
Print the entire catalog.
Part B: Print individual item prices:
Part C: Update prices (limited items went up!):
Example Output:
=== Part A ===
{'Dominus': 50000, 'Sparkle Time Fedora': 15000, 'Valkyrie Helm': 25000, 'Rainbow Wings': 8000, 'Golden Crown': 12000}
=== Part B ===
Dominus costs: 50000 Robux
Rainbow Wings costs: 8000 Robux
Golden Crown costs: 12000 Robux
=== Part C ===
{'Dominus': 60000, 'Sparkle Time Fedora': 15000, 'Valkyrie Helm': 25000, 'Rainbow Wings': 6000, 'Golden Crown': 12000}
โ Standard library: heapq, collections, itertools, math, random, functools, datetime, bisect
โ Functions, classes, recursion, print()
โ No file system, subprocess, OS access, or network requests
โ No pip install (all supported modules are pre-loaded)
โฑ๏ธ 5 second execution time limit