Skip to content

Commit

Permalink
Hardcode emojis into READMEs (#134)
Browse files Browse the repository at this point in the history
  • Loading branch information
huangsam authored Jan 6, 2025
1 parent a7e09fb commit 2fb7114
Show file tree
Hide file tree
Showing 6 changed files with 352 additions and 352 deletions.
118 changes: 59 additions & 59 deletions README.de.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
[![License](https://img.shields.io/github/license/huangsam/ultimate-python)](https://github.com/huangsam/ultimate-python/blob/main/LICENSE)
[![r/Python](https://img.shields.io/badge/reddit-original_post-red)](https://www.reddit.com/r/Python/comments/inllmf/ultimate_python_study_guide/)

Der ultimative Python-Lernführer für Einsteiger und Profis gleichermaßen. :snake: :snake: :snake:
Der ultimative Python-Lernführer für Einsteiger und Profis gleichermaßen. 🐍 🐍 🐍

```python
print("Ultimativer Python-Lernführer")
Expand Down Expand Up @@ -66,98 +66,98 @@ Es gibt zwei Möglichkeiten, die Module auszuführen:

## Inhaltsübersicht

:books: = Externe Ressource,
:cake: = Thema für Anfänger,
:exploding_head: = Fortgeschrittenes Thema
📚 = Externe Ressource,
🍰 = Thema für Anfänger,
🤯 = Fortgeschrittenes Thema

1. **Über Python**
- Overview: [What is Python](https://github.com/trekhleb/learn-python/blob/master/src/getting_started/what_is_python.md) ( :books:, :cake: )
- Design philosophy: [The Zen of Python](https://www.python.org/dev/peps/pep-0020/) ( :books: )
- Style guide: [Style Guide for Python Code](https://www.python.org/dev/peps/pep-0008/) ( :books:, :exploding_head: )
- Data model: [Data model](https://docs.python.org/3/reference/datamodel.html) ( :books:, :exploding_head: )
- Standard library: [The Python Standard Library](https://docs.python.org/3/library/) ( :books:, :exploding_head: )
- Built-in functions: [Built-in Functions](https://docs.python.org/3/library/functions.html) ( :books: )
- Overview: [What is Python](https://github.com/trekhleb/learn-python/blob/master/src/getting_started/what_is_python.md) ( 📚, 🍰 )
- Design philosophy: [The Zen of Python](https://www.python.org/dev/peps/pep-0020/) ( 📚 )
- Style guide: [Style Guide for Python Code](https://www.python.org/dev/peps/pep-0008/) ( 📚, 🤯 )
- Data model: [Data model](https://docs.python.org/3/reference/datamodel.html) ( 📚, 🤯 )
- Standard library: [The Python Standard Library](https://docs.python.org/3/library/) ( 📚, 🤯 )
- Built-in functions: [Built-in Functions](https://docs.python.org/3/library/functions.html) ( 📚 )
2. **Syntax**
- Variable: [Built-in literals](ultimatepython/syntax/variable.py) ( :cake: )
- Expression: [Numeric operations](ultimatepython/syntax/expression.py) ( :cake: )
- 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: )
- Conditional: [if | if-else | if-elif-else](ultimatepython/syntax/conditional.py) ( :cake: )
- Loop: [for-loop | while-loop](ultimatepython/syntax/loop.py) ( :cake: )
- Function: [def | lambda](ultimatepython/syntax/function.py) ( :cake: )
- Variable: [Built-in literals](ultimatepython/syntax/variable.py) ( 🍰 )
- Expression: [Numeric operations](ultimatepython/syntax/expression.py) ( 🍰 )
- Bitwise: [Bitwise operators](ultimatepython/syntax/bitwise.py) ( 🍰 ), [One's/Two's Complement](https://www.geeksforgeeks.org/difference-between-1s-complement-representation-and-2s-complement-representation-technique/) ( 📚 )
- Conditional: [if | if-else | if-elif-else](ultimatepython/syntax/conditional.py) ( 🍰 )
- Loop: [for-loop | while-loop](ultimatepython/syntax/loop.py) ( 🍰 )
- Function: [def | lambda](ultimatepython/syntax/function.py) ( 🍰 )
3. **Daten-Strukturen**
- List: [List operations](ultimatepython/data_structures/list.py) ( :cake: )
- List: [List operations](ultimatepython/data_structures/list.py) ( 🍰 )
- Tuple: [Tuple operations](ultimatepython/data_structures/tuple.py)
- Set: [Set operations](ultimatepython/data_structures/set.py)
- Dict: [Dictionary operations](ultimatepython/data_structures/dict.py) ( :cake: )
- Dict: [Dictionary operations](ultimatepython/data_structures/dict.py) ( 🍰 )
- Comprehension: [list | tuple | set | dict](ultimatepython/data_structures/comprehension.py)
- String: [String operations](ultimatepython/data_structures/string.py) ( :cake: )
- Deque: [deque](ultimatepython/data_structures/deque.py) ( :exploding_head: )
- Namedtuple: [namedtuple](ultimatepython/data_structures/namedtuple.py) ( :exploding_head: )
- Defaultdict: [defaultdict](ultimatepython/data_structures/defaultdict.py) ( :exploding_head: )
- Time complexity: [cPython operations](https://wiki.python.org/moin/TimeComplexity) ( :books:, :exploding_head: )
- String: [String operations](ultimatepython/data_structures/string.py) ( 🍰 )
- Deque: [deque](ultimatepython/data_structures/deque.py) ( 🤯 )
- Namedtuple: [namedtuple](ultimatepython/data_structures/namedtuple.py) ( 🤯 )
- Defaultdict: [defaultdict](ultimatepython/data_structures/defaultdict.py) ( 🤯 )
- Time complexity: [cPython operations](https://wiki.python.org/moin/TimeComplexity) ( 📚, 🤯 )
4. **Klassen**
- Basic class: [Basic definition](ultimatepython/classes/basic_class.py) ( :cake: )
- Inheritance: [Inheritance](ultimatepython/classes/inheritance.py) ( :cake: )
- Basic class: [Basic definition](ultimatepython/classes/basic_class.py) ( 🍰 )
- Inheritance: [Inheritance](ultimatepython/classes/inheritance.py) ( 🍰 )
- Abstract class: [Abstract definition](ultimatepython/classes/abstract_class.py)
- Exception class: [Exception definition](ultimatepython/classes/exception_class.py)
- Iterator class: [Iterator definition | yield](ultimatepython/classes/iterator_class.py) ( :exploding_head: )
- Iterator class: [Iterator definition | yield](ultimatepython/classes/iterator_class.py) ( 🤯 )
- Encapsulation: [Encapsulation definition](ultimatepython/classes/encapsulation.py)
5. **Fortgeschrittene**
- Decorator: [Decorator definition | wraps](ultimatepython/advanced/decorator.py) ( :exploding_head: )
- File Handling: [File Handling](ultimatepython/advanced/file_handling.py) ( :exploding_head: )
- Context manager: [Context managers](ultimatepython/advanced/context_manager.py) ( :exploding_head: )
- Method resolution order: [mro](ultimatepython/advanced/mro.py) ( :exploding_head: )
- Mixin: [Mixin definition](ultimatepython/advanced/mixin.py) ( :exploding_head: )
- Metaclass: [Metaclass definition](ultimatepython/advanced/meta_class.py) ( :exploding_head: )
- Thread: [ThreadPoolExecutor](ultimatepython/advanced/thread.py) ( :exploding_head: )
- Asyncio: [async | await](ultimatepython/advanced/async.py) ( :exploding_head: )
- Weak reference: [weakref](ultimatepython/advanced/weak_ref.py) ( :exploding_head: )
- Benchmark: [cProfile | pstats](ultimatepython/advanced/benchmark.py) ( :exploding_head: )
- Mocking: [MagicMock | PropertyMock | patch](ultimatepython/advanced/mocking.py) ( :exploding_head: )
- Regular expression: [search | findall | match | fullmatch](ultimatepython/advanced/regex.py) ( :exploding_head: )
- Data format: [json | xml | csv](ultimatepython/advanced/data_format.py) ( :exploding_head: )
- Datetime: [datetime | timezone](ultimatepython/advanced/date_time.py) ( :exploding_head: )
- Decorator: [Decorator definition | wraps](ultimatepython/advanced/decorator.py) ( 🤯 )
- File Handling: [File Handling](ultimatepython/advanced/file_handling.py) ( 🤯 )
- Context manager: [Context managers](ultimatepython/advanced/context_manager.py) ( 🤯 )
- Method resolution order: [mro](ultimatepython/advanced/mro.py) ( 🤯 )
- Mixin: [Mixin definition](ultimatepython/advanced/mixin.py) ( 🤯 )
- Metaclass: [Metaclass definition](ultimatepython/advanced/meta_class.py) ( 🤯 )
- Thread: [ThreadPoolExecutor](ultimatepython/advanced/thread.py) ( 🤯 )
- Asyncio: [async | await](ultimatepython/advanced/async.py) ( 🤯 )
- Weak reference: [weakref](ultimatepython/advanced/weak_ref.py) ( 🤯 )
- Benchmark: [cProfile | pstats](ultimatepython/advanced/benchmark.py) ( 🤯 )
- Mocking: [MagicMock | PropertyMock | patch](ultimatepython/advanced/mocking.py) ( 🤯 )
- Regular expression: [search | findall | match | fullmatch](ultimatepython/advanced/regex.py) ( 🤯 )
- Data format: [json | xml | csv](ultimatepython/advanced/data_format.py) ( 🤯 )
- Datetime: [datetime | timezone](ultimatepython/advanced/date_time.py) ( 🤯 )

## Zusätzliche Ressourcen

:necktie: = Interview-Ressource,
:test_tube: = Code-Beispiele,
:brain: = Projektideen
👔 = Interview-Ressource,
🧪 = Code-Beispiele,
🧠 = Projektideen

### GitHub repositories

Lernen Sie weiter, indem Sie von anderen Quellen lesen.

- [TheAlgorithms/Python](https://github.com/TheAlgorithms/Python) ( :necktie:, :test_tube: )
- [faif/python-patterns](https://github.com/faif/python-patterns) ( :necktie:, :test_tube: )
- [geekcomputers/Python](https://github.com/geekcomputers/Python) ( :test_tube: )
- [trekhleb/homemade-machine-learning](https://github.com/trekhleb/homemade-machine-learning) ( :test_tube: )
- [karan/Projects](https://github.com/karan/Projects) ( :brain: )
- [MunGell/awesome-for-beginners](https://github.com/MunGell/awesome-for-beginners) ( :brain: )
- [TheAlgorithms/Python](https://github.com/TheAlgorithms/Python) ( 👔, 🧪 )
- [faif/python-patterns](https://github.com/faif/python-patterns) ( 👔, 🧪 )
- [geekcomputers/Python](https://github.com/geekcomputers/Python) ( 🧪 )
- [trekhleb/homemade-machine-learning](https://github.com/trekhleb/homemade-machine-learning) ( 🧪 )
- [karan/Projects](https://github.com/karan/Projects) ( 🧠 )
- [MunGell/awesome-for-beginners](https://github.com/MunGell/awesome-for-beginners) ( 🧠 )
- [vinta/awesome-python](https://github.com/vinta/awesome-python)
- [academic/awesome-datascience](https://github.com/academic/awesome-datascience)
- [josephmisiti/awesome-machine-learning](https://github.com/josephmisiti/awesome-machine-learning)
- [ZuzooVn/machine-learning-for-software-engineers](https://github.com/ZuzooVn/machine-learning-for-software-engineers)
- [30-seconds/30-seconds-of-python](https://github.com/30-seconds/30-seconds-of-python) ( :test_tube: )
- [30-seconds/30-seconds-of-python](https://github.com/30-seconds/30-seconds-of-python) ( 🧪 )
- [ml-tooling/best-of-python](https://github.com/ml-tooling/best-of-python)
- [practical-tutorials/project-based-learning](https://github.com/practical-tutorials/project-based-learning#python)
- [freeCodeCamp/freeCodeCamp](https://github.com/freeCodeCamp/freeCodeCamp) ( :necktie: )
- [freeCodeCamp/freeCodeCamp](https://github.com/freeCodeCamp/freeCodeCamp) ( 👔 )

### Interaktive Übungen

Üben Sie weiter, damit Ihre Programmierkenntnisse nicht einrosten.

- [codechef.com](https://www.codechef.com/) ( :necktie: )
- [codechef.com](https://www.codechef.com/) ( 👔 )
- [codeforces.com](https://codeforces.com/)
- [codementor.io](https://www.codementor.io) ( :brain: )
- [coderbyte.com](https://www.coderbyte.com/) ( :necktie: )
- [codementor.io](https://www.codementor.io) ( 🧠 )
- [coderbyte.com](https://www.coderbyte.com/) ( 👔 )
- [codewars.com](https://www.codewars.com/)
- [exercism.io](https://exercism.io/)
- [geeksforgeeks.org](https://www.geeksforgeeks.org/) ( :necktie: )
- [geeksforgeeks.org](https://www.geeksforgeeks.org/) ( 👔 )
- [hackerearth.com](https://www.hackerearth.com/)
- [hackerrank.com](https://www.hackerrank.com/) ( :necktie: )
- [kaggle.com](https://www.kaggle.com/) ( :brain: )
- [leetcode.com](https://leetcode.com/) ( :necktie: )
- [hackerrank.com](https://www.hackerrank.com/) ( 👔 )
- [kaggle.com](https://www.kaggle.com/) ( 🧠 )
- [leetcode.com](https://leetcode.com/) ( 👔 )
- [projecteuler.net](https://projecteuler.net/)
- [replit.com](https://replit.com/)
- [w3schools.com](https://www.w3schools.com/python/) ( :test_tube: )
- [w3schools.com](https://www.w3schools.com/python/) ( 🧪 )
Loading

0 comments on commit 2fb7114

Please sign in to comment.