iterate through keys in dictionary code example
Example 1: iterate through keys in dictionary
dictionary_name={"Name": "John", "Age": 29, "salary":25000,"Company":"GOOGLE"}
for key in dictionary_name.keys():
print(key)
Example 2: iterate through keys in dictionary
for key in dictionary_name: