π Dictionaries π Conditionals π₯ Input

Part A: Set up:
robux = 30000catalog dictionary from Exercise 1inventory = {}Part B: Print the catalog using a for loop
Part C: Ask the player what they want to buy:
inventory[item] = catalog[item]Part D: Print your final inventory
Example Output:
You have 30000 Robux
=== CATALOG ===
Dominus: 50000 Robux
Sparkle Time Fedora: 15000 Robux
Valkyrie Helm: 25000 Robux
Rainbow Wings: 8000 Robux
Golden Crown: 12000 Robux
What item do you want to buy? Valkyrie Helm
You bought Valkyrie Helm for 25000 Robux!
You have 5000 Robux left
Your inventory: {'Valkyrie Helm': 25000}
β 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