Source Code:
(back to article)
d = {'a': 1, 'b': 2, 'c': 3} # Verwendung von items() print(d.items()) # Ausgabe: [('a', 1), ('b', 2), ('c', 3)] # Verwendung von iteritems() for key, value in d.iteritems(): print(key, value) # Ausgabe: # a 1 # b 2 # c 3
Result:
Report an issue