I'm having trouble trying to figure out how to print out just only the key from a nested dictionary. For example, I want to print out just only 100 and 111.
db = { 100: {"fruit": "orange",
"dairy": "milk",
"meat": "steak"},
111: {"fruit": "apple",
"dairy": "cheese",
"meat": "chicken"}
}