So I have this inventory dict and an empty items list that I want to fill it with the keys in the inventory dict. Any clues on how do I fill the list?
# Inventory Dict
inventory = {}
inventory["item a"] = 12
inventory["item b"] = 10
inventory["item x"] = 25
print(inventory)
# Item List
items = []