@@ -70,52 +70,52 @@ Es gibt zwei Möglichkeiten, die Module auszuführen:
70
70
:exploding_head : = Fortgeschrittenes Thema
71
71
72
72
1 . ** Über Python**
73
- - Overview: [ What is Python] ( https://github.com/trekhleb/learn-python/blob/master/src/getting_started/what_is_python.md ) ( :books : , :cake : )
74
- - Design philosophy: [ The Zen of Python] ( https://www.python.org/dev/peps/pep-0020/ ) ( :books : )
75
- - Style guide: [ Style Guide for Python Code] ( https://www.python.org/dev/peps/pep-0008/ ) ( :books : , :exploding_head : )
76
- - Data model: [ Data model] ( https://docs.python.org/3/reference/datamodel.html ) ( :books : , :exploding_head : )
77
- - Standard library: [ The Python Standard Library] ( https://docs.python.org/3/library/ ) ( :books : , :exploding_head : )
78
- - Built-in functions: [ Built-in Functions] ( https://docs.python.org/3/library/functions.html ) ( :books : )
73
+ - Overview: [ What is Python] ( https://github.com/trekhleb/learn-python/blob/master/src/getting_started/what_is_python.md ) ( :books : , :cake : )
74
+ - Design philosophy: [ The Zen of Python] ( https://www.python.org/dev/peps/pep-0020/ ) ( :books : )
75
+ - Style guide: [ Style Guide for Python Code] ( https://www.python.org/dev/peps/pep-0008/ ) ( :books : , :exploding_head : )
76
+ - Data model: [ Data model] ( https://docs.python.org/3/reference/datamodel.html ) ( :books : , :exploding_head : )
77
+ - Standard library: [ The Python Standard Library] ( https://docs.python.org/3/library/ ) ( :books : , :exploding_head : )
78
+ - Built-in functions: [ Built-in Functions] ( https://docs.python.org/3/library/functions.html ) ( :books : )
79
79
2 . ** Syntax**
80
- - Variable: [ Built-in literals] ( ultimatepython/syntax/variable.py ) ( :cake : )
81
- - Expression: [ Numeric operations] ( ultimatepython/syntax/expression.py ) ( :cake : )
82
- - Bitwise: [ Bitwise operators] ( ultimatepython/syntax/bitwise.py ) ( :cake : ), [ One's/Two's Complement] ( https://www.geeksforgeeks.org/difference-between-1s-complement-representation-and-2s-complement-representation-technique/ ) ( :books : )
83
- - Conditional: [ if | if-else | if-elif-else] ( ultimatepython/syntax/conditional.py ) ( :cake : )
84
- - Loop: [ for-loop | while-loop] ( ultimatepython/syntax/loop.py ) ( :cake : )
85
- - Function: [ def | lambda] ( ultimatepython/syntax/function.py ) ( :cake : )
80
+ - Variable: [ Built-in literals] ( ultimatepython/syntax/variable.py ) ( :cake : )
81
+ - Expression: [ Numeric operations] ( ultimatepython/syntax/expression.py ) ( :cake : )
82
+ - Bitwise: [ Bitwise operators] ( ultimatepython/syntax/bitwise.py ) ( :cake : ), [ One's/Two's Complement] ( https://www.geeksforgeeks.org/difference-between-1s-complement-representation-and-2s-complement-representation-technique/ ) ( :books : )
83
+ - Conditional: [ if | if-else | if-elif-else] ( ultimatepython/syntax/conditional.py ) ( :cake : )
84
+ - Loop: [ for-loop | while-loop] ( ultimatepython/syntax/loop.py ) ( :cake : )
85
+ - Function: [ def | lambda] ( ultimatepython/syntax/function.py ) ( :cake : )
86
86
3 . ** Daten-Strukturen**
87
- - List: [ List operations] ( ultimatepython/data_structures/list.py ) ( :cake : )
87
+ - List: [ List operations] ( ultimatepython/data_structures/list.py ) ( :cake : )
88
88
- Tuple: [ Tuple operations] ( ultimatepython/data_structures/tuple.py )
89
89
- Set: [ Set operations] ( ultimatepython/data_structures/set.py )
90
- - Dict: [ Dictionary operations] ( ultimatepython/data_structures/dict.py ) ( :cake : )
90
+ - Dict: [ Dictionary operations] ( ultimatepython/data_structures/dict.py ) ( :cake : )
91
91
- Comprehension: [ list | tuple | set | dict] ( ultimatepython/data_structures/comprehension.py )
92
- - String: [ String operations] ( ultimatepython/data_structures/string.py ) ( :cake : )
93
- - Deque: [ deque] ( ultimatepython/data_structures/deque.py ) ( :exploding_head : )
94
- - Namedtuple: [ namedtuple] ( ultimatepython/data_structures/namedtuple.py ) ( :exploding_head : )
95
- - Defaultdict: [ defaultdict] ( ultimatepython/data_structures/defaultdict.py ) ( :exploding_head : )
96
- - Time complexity: [ cPython operations] ( https://wiki.python.org/moin/TimeComplexity ) ( :books : , :exploding_head : )
92
+ - String: [ String operations] ( ultimatepython/data_structures/string.py ) ( :cake : )
93
+ - Deque: [ deque] ( ultimatepython/data_structures/deque.py ) ( :exploding_head : )
94
+ - Namedtuple: [ namedtuple] ( ultimatepython/data_structures/namedtuple.py ) ( :exploding_head : )
95
+ - Defaultdict: [ defaultdict] ( ultimatepython/data_structures/defaultdict.py ) ( :exploding_head : )
96
+ - Time complexity: [ cPython operations] ( https://wiki.python.org/moin/TimeComplexity ) ( :books : , :exploding_head : )
97
97
4 . ** Klassen**
98
- - Basic class: [ Basic definition] ( ultimatepython/classes/basic_class.py ) ( :cake : )
99
- - Inheritance: [ Inheritance] ( ultimatepython/classes/inheritance.py ) ( :cake : )
98
+ - Basic class: [ Basic definition] ( ultimatepython/classes/basic_class.py ) ( :cake : )
99
+ - Inheritance: [ Inheritance] ( ultimatepython/classes/inheritance.py ) ( :cake : )
100
100
- Abstract class: [ Abstract definition] ( ultimatepython/classes/abstract_class.py )
101
101
- Exception class: [ Exception definition] ( ultimatepython/classes/exception_class.py )
102
- - Iterator class: [ Iterator definition | yield] ( ultimatepython/classes/iterator_class.py ) ( :exploding_head : )
102
+ - Iterator class: [ Iterator definition | yield] ( ultimatepython/classes/iterator_class.py ) ( :exploding_head : )
103
103
- Encapsulation: [ Encapsulation definition] ( ultimatepython/classes/encapsulation.py )
104
104
5 . ** Fortgeschrittene**
105
- - Decorator: [ Decorator definition | wraps] ( ultimatepython/advanced/decorator.py ) ( :exploding_head : )
106
- - File Handling: [ File Handling] ( ultimatepython/advanced/file_handling.py ) ( :exploding_head : )
107
- - Context manager: [ Context managers] ( ultimatepython/advanced/context_manager.py ) ( :exploding_head : )
108
- - Method resolution order: [ mro] ( ultimatepython/advanced/mro.py ) ( :exploding_head : )
109
- - Mixin: [ Mixin definition] ( ultimatepython/advanced/mixin.py ) ( :exploding_head : )
110
- - Metaclass: [ Metaclass definition] ( ultimatepython/advanced/meta_class.py ) ( :exploding_head : )
111
- - Thread: [ ThreadPoolExecutor] ( ultimatepython/advanced/thread.py ) ( :exploding_head : )
112
- - Asyncio: [ async | await] ( ultimatepython/advanced/async.py ) ( :exploding_head : )
113
- - Weak reference: [ weakref] ( ultimatepython/advanced/weak_ref.py ) ( :exploding_head : )
114
- - Benchmark: [ cProfile | pstats] ( ultimatepython/advanced/benchmark.py ) ( :exploding_head : )
115
- - Mocking: [ MagicMock | PropertyMock | patch] ( ultimatepython/advanced/mocking.py ) ( :exploding_head : )
116
- - Regular expression: [ search | findall | match | fullmatch] ( ultimatepython/advanced/regex.py ) ( :exploding_head : )
117
- - Data format: [ json | xml | csv] ( ultimatepython/advanced/data_format.py ) ( :exploding_head : )
118
- - Datetime: [ datetime | timezone] ( ultimatepython/advanced/date_time.py ) ( :exploding_head : )
105
+ - Decorator: [ Decorator definition | wraps] ( ultimatepython/advanced/decorator.py ) ( :exploding_head : )
106
+ - File Handling: [ File Handling] ( ultimatepython/advanced/file_handling.py ) ( :exploding_head : )
107
+ - Context manager: [ Context managers] ( ultimatepython/advanced/context_manager.py ) ( :exploding_head : )
108
+ - Method resolution order: [ mro] ( ultimatepython/advanced/mro.py ) ( :exploding_head : )
109
+ - Mixin: [ Mixin definition] ( ultimatepython/advanced/mixin.py ) ( :exploding_head : )
110
+ - Metaclass: [ Metaclass definition] ( ultimatepython/advanced/meta_class.py ) ( :exploding_head : )
111
+ - Thread: [ ThreadPoolExecutor] ( ultimatepython/advanced/thread.py ) ( :exploding_head : )
112
+ - Asyncio: [ async | await] ( ultimatepython/advanced/async.py ) ( :exploding_head : )
113
+ - Weak reference: [ weakref] ( ultimatepython/advanced/weak_ref.py ) ( :exploding_head : )
114
+ - Benchmark: [ cProfile | pstats] ( ultimatepython/advanced/benchmark.py ) ( :exploding_head : )
115
+ - Mocking: [ MagicMock | PropertyMock | patch] ( ultimatepython/advanced/mocking.py ) ( :exploding_head : )
116
+ - Regular expression: [ search | findall | match | fullmatch] ( ultimatepython/advanced/regex.py ) ( :exploding_head : )
117
+ - Data format: [ json | xml | csv] ( ultimatepython/advanced/data_format.py ) ( :exploding_head : )
118
+ - Datetime: [ datetime | timezone] ( ultimatepython/advanced/date_time.py ) ( :exploding_head : )
119
119
120
120
## Zusätzliche Ressourcen
121
121
@@ -127,36 +127,36 @@ Es gibt zwei Möglichkeiten, die Module auszuführen:
127
127
128
128
Lernen Sie weiter, indem Sie von anderen Quellen lesen.
129
129
130
- - [ TheAlgorithms/Python] ( https://github.com/TheAlgorithms/Python ) ( :necktie : , :test_tube : )
131
- - [ faif/python-patterns] ( https://github.com/faif/python-patterns ) ( :necktie : , :test_tube : )
132
- - [ geekcomputers/Python] ( https://github.com/geekcomputers/Python ) ( :test_tube : )
133
- - [ trekhleb/homemade-machine-learning] ( https://github.com/trekhleb/homemade-machine-learning ) ( :test_tube : )
134
- - [ karan/Projects] ( https://github.com/karan/Projects ) ( :brain : )
135
- - [ MunGell/awesome-for-beginners] ( https://github.com/MunGell/awesome-for-beginners ) ( :brain : )
130
+ - [ TheAlgorithms/Python] ( https://github.com/TheAlgorithms/Python ) ( :necktie : , :test_tube : )
131
+ - [ faif/python-patterns] ( https://github.com/faif/python-patterns ) ( :necktie : , :test_tube : )
132
+ - [ geekcomputers/Python] ( https://github.com/geekcomputers/Python ) ( :test_tube : )
133
+ - [ trekhleb/homemade-machine-learning] ( https://github.com/trekhleb/homemade-machine-learning ) ( :test_tube : )
134
+ - [ karan/Projects] ( https://github.com/karan/Projects ) ( :brain : )
135
+ - [ MunGell/awesome-for-beginners] ( https://github.com/MunGell/awesome-for-beginners ) ( :brain : )
136
136
- [ vinta/awesome-python] ( https://github.com/vinta/awesome-python )
137
137
- [ academic/awesome-datascience] ( https://github.com/academic/awesome-datascience )
138
138
- [ josephmisiti/awesome-machine-learning] ( https://github.com/josephmisiti/awesome-machine-learning )
139
139
- [ ZuzooVn/machine-learning-for-software-engineers] ( https://github.com/ZuzooVn/machine-learning-for-software-engineers )
140
- - [ 30-seconds/30-seconds-of-python] ( https://github.com/30-seconds/30-seconds-of-python ) ( :test_tube : )
140
+ - [ 30-seconds/30-seconds-of-python] ( https://github.com/30-seconds/30-seconds-of-python ) ( :test_tube : )
141
141
- [ ml-tooling/best-of-python] ( https://github.com/ml-tooling/best-of-python )
142
142
- [ practical-tutorials/project-based-learning] ( https://github.com/practical-tutorials/project-based-learning#python )
143
- - [ freeCodeCamp/freeCodeCamp] ( https://github.com/freeCodeCamp/freeCodeCamp ) ( :necktie : )
143
+ - [ freeCodeCamp/freeCodeCamp] ( https://github.com/freeCodeCamp/freeCodeCamp ) ( :necktie : )
144
144
145
145
### Interaktive Übungen
146
146
147
147
Üben Sie weiter, damit Ihre Programmierkenntnisse nicht einrosten.
148
148
149
- - [ leetcode.com] ( https://leetcode.com/ ) ( :necktie : )
150
- - [ hackerrank.com] ( https://www.hackerrank.com/ ) ( :necktie : )
151
- - [ kaggle.com] ( https://www.kaggle.com/ ) ( :brain : )
149
+ - [ leetcode.com] ( https://leetcode.com/ ) ( :necktie : )
150
+ - [ hackerrank.com] ( https://www.hackerrank.com/ ) ( :necktie : )
151
+ - [ kaggle.com] ( https://www.kaggle.com/ ) ( :brain : )
152
152
- [ exercism.io] ( https://exercism.io/ )
153
153
- [ projecteuler.net] ( https://projecteuler.net/ )
154
154
- [ DevProjects] ( https://www.codementor.io/projects/python )
155
155
- [ codewars.com] ( https://www.codewars.com/ )
156
156
- [ hackerearth.com] ( https://www.hackerearth.com/ )
157
- - [ codechef.com] ( https://www.codechef.com/ ) ( :necktie : )
158
- - [ w3schools.com] ( https://www.w3schools.com/python/ ) ( :brain : )
157
+ - [ codechef.com] ( https://www.codechef.com/ ) ( :necktie : )
158
+ - [ w3schools.com] ( https://www.w3schools.com/python/ ) ( :brain : )
159
159
- [ codeforces.com] ( https://codeforces.com/ )
160
- - [ geeksforgeeks.org] ( https://www.geeksforgeeks.org/ ) ( :necktie : )
161
- - [ coderbyte.com] ( https://www.coderbyte.com/ ) ( :necktie : )
160
+ - [ geeksforgeeks.org] ( https://www.geeksforgeeks.org/ ) ( :necktie : )
161
+ - [ coderbyte.com] ( https://www.coderbyte.com/ ) ( :necktie : )
162
162
- [ replit.com] ( https://replit.com/ )
0 commit comments