struct_py_dict
Differences
This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
struct_py_dict [2017/06/30 13:15] – created gg | struct_py_dict [2017/06/30 13:42] (current) – gg | ||
---|---|---|---|
Line 1: | Line 1: | ||
====== dicts in Python3 ====== | ====== dicts in Python3 ====== | ||
- | Die letzte Datenstruktur, | + | Die letzte Datenstruktur, |
+ | |||
+ | <code python> | ||
+ | # Das dictionary erstellen: | ||
+ | dictionary = {" | ||
+ | # Andere Syntax, um das dictionary zu erstellen: | ||
+ | dictionary = dict([(" | ||
+ | # Ausgabe des dicts | ||
+ | print(dictionary) | ||
+ | # Ausgabe der Elemente | ||
+ | print(dictionary.items()) # Ausgabe wird sein: dict_items([(' | ||
+ | |||
+ | # Über das dictionary Iterieren und etwas damit ausgeben | ||
+ | for key, value in dictionary.items(): | ||
+ | print(" | ||
+ | |||
+ | # Zugreifen über den Schlüssel | ||
+ | print(" | ||
+ | |||
+ | </ | ||
struct_py_dict.1498821334.txt.gz · Last modified: 2017/06/30 13:15 by gg