Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
|
|
@ -0,0 +1,18 @@
|
|||
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)
|
||||
Loading…
Add table
Add a link
Reference in a new issue