print key of dictionary python

100

print key of dictionary python -

for key, value in mydic.items() :
    print (key, value)

python dict print keys -

print(dictionary.items()) #prints keys and values
print(dictionary.keys()) #prints keys
print(dictionary.values()) #prints values

Comments

Submit
0 Comments