Untitled
unknown
python
3 years ago
185 B
11
Indexable
def check_if_enough_resources(users_choice):
for key, value in MENU[users_choice]['ingredients'].items():
if resources[key] < value:
return False
return TrueEditor is loading...