diff --git a/python/.DS_Store b/python/.DS_Store new file mode 100644 index 0000000..6abc424 Binary files /dev/null and b/python/.DS_Store differ diff --git a/python/01_python_allgemein.md b/python/01_python_allgemein.md index c1b3a98..45275e7 100644 --- a/python/01_python_allgemein.md +++ b/python/01_python_allgemein.md @@ -53,13 +53,13 @@ Mit `type()` kann man den Datentyp auslesen. Mit `del()` kann man Variabeln lös - Float (1,234) - Complex (4j) -![[numbers_datatype.png]] +![numbers](rsc/numbers_datatype.png) - [ ] Boolean, wenn Zahl höher ist **Sequences** -![[sequences_datatype.png]] +![sequences_datatype.png](rsc/sequences_datatype.png) #### Listen @@ -87,7 +87,7 @@ tup = ("Test", 1, 4, False) **Settypes** -![[settypes_datatype.png]] +![settypes_datatype.png](rsc/settypes_datatype.png) #### Sets @@ -108,7 +108,7 @@ colors2 = frozenset(["blue", "red", "green"]) **Mappings** -![[mappings_datatype.png]] +![mappings_datatype.png](rsc/mappings_datatype.png) #### Dictionary diff --git a/python/rsc/mappings_datatype.png b/python/rsc/mappings_datatype.png new file mode 100644 index 0000000..bc63e8b Binary files /dev/null and b/python/rsc/mappings_datatype.png differ diff --git a/python/rsc/numbers_datatype.png b/python/rsc/numbers_datatype.png new file mode 100644 index 0000000..57039cd Binary files /dev/null and b/python/rsc/numbers_datatype.png differ diff --git a/python/rsc/sequences_datatype.png b/python/rsc/sequences_datatype.png new file mode 100644 index 0000000..8191243 Binary files /dev/null and b/python/rsc/sequences_datatype.png differ diff --git a/python/rsc/settypes_datatype.png b/python/rsc/settypes_datatype.png new file mode 100644 index 0000000..2350c25 Binary files /dev/null and b/python/rsc/settypes_datatype.png differ