Skip to content

Commit 905ad8a

Browse files
committed
Update formatting of emojis
1 parent 6a80158 commit 905ad8a

File tree

5 files changed

+254
-254
lines changed

5 files changed

+254
-254
lines changed

README.de.md

Lines changed: 51 additions & 51 deletions
Original file line numberDiff line numberDiff line change
@@ -70,52 +70,52 @@ Es gibt zwei Möglichkeiten, die Module auszuführen:
7070
:exploding_head: = Fortgeschrittenes Thema
7171

7272
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: )
7979
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: )
8686
3. **Daten-Strukturen**
87-
- List: [List operations](ultimatepython/data_structures/list.py) ( :cake:)
87+
- List: [List operations](ultimatepython/data_structures/list.py) ( :cake: )
8888
- Tuple: [Tuple operations](ultimatepython/data_structures/tuple.py)
8989
- 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: )
9191
- 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: )
9797
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: )
100100
- Abstract class: [Abstract definition](ultimatepython/classes/abstract_class.py)
101101
- 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: )
103103
- Encapsulation: [Encapsulation definition](ultimatepython/classes/encapsulation.py)
104104
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: )
119119

120120
## Zusätzliche Ressourcen
121121

@@ -127,36 +127,36 @@ Es gibt zwei Möglichkeiten, die Module auszuführen:
127127

128128
Lernen Sie weiter, indem Sie von anderen Quellen lesen.
129129

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: )
136136
- [vinta/awesome-python](https://github.com/vinta/awesome-python)
137137
- [academic/awesome-datascience](https://github.com/academic/awesome-datascience)
138138
- [josephmisiti/awesome-machine-learning](https://github.com/josephmisiti/awesome-machine-learning)
139139
- [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: )
141141
- [ml-tooling/best-of-python](https://github.com/ml-tooling/best-of-python)
142142
- [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: )
144144

145145
### Interaktive Übungen
146146

147147
Üben Sie weiter, damit Ihre Programmierkenntnisse nicht einrosten.
148148

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: )
152152
- [exercism.io](https://exercism.io/)
153153
- [projecteuler.net](https://projecteuler.net/)
154154
- [DevProjects](https://www.codementor.io/projects/python)
155155
- [codewars.com](https://www.codewars.com/)
156156
- [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: )
159159
- [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: )
162162
- [replit.com](https://replit.com/)

0 commit comments

Comments
 (0)