Python iterate Dictionary Key Nilai
a_dict = {'color': 'blue', 'fruit': 'apple', 'pet': 'dog'}
for key, value in a_dict.items():
print(key, '->', value)
Zealous Zebra
a_dict = {'color': 'blue', 'fruit': 'apple', 'pet': 'dog'}
for key, value in a_dict.items():
print(key, '->', value)
n = int(input())
ans = {}
for i in range (1,n+1):
ans[i] = i * i
print(ans)
dictionary_name={"Name": "John", "Age": 29, "salary":25000,"Company":"GOOGLE"}
for key in dictionary_name.keys():
print(key)