19 lines
417 B
Python
19 lines
417 B
Python
myDict = { "hello": 13,
|
|
"world": 31,
|
|
"!" : 71 }
|
|
|
|
# iterating over key-value pairs:
|
|
for key, value in myDict.items():
|
|
print ("key = %s, value = %s" % (key, value))
|
|
|
|
# iterating over keys:
|
|
for key in myDict:
|
|
print ("key = %s" % key)
|
|
# (is a shortcut for:)
|
|
for key in myDict.keys():
|
|
print ("key = %s" % key)
|
|
|
|
# iterating over values:
|
|
for value in myDict.values():
|
|
print ("value = %s" % value)
|