https://github.com/mwksolution/python-cheat_sheet
https://github.com/mwksolution/python-cheat_sheet
Last synced: 9 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/mwksolution/python-cheat_sheet
- Owner: MWKSolution
- Created: 2022-07-26T19:53:17.000Z (almost 4 years ago)
- Default Branch: master
- Last Pushed: 2023-12-30T23:05:55.000Z (over 2 years ago)
- Last Synced: 2025-11-24T05:02:59.515Z (7 months ago)
- Language: Python
- Size: 312 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Python cheat-sheet
---
## Standard Library
1. [Data types](Standard_Library/types.md)
2. [Collections](Standard_Library/collections.md)
3. [Iterator](Standard_Library/iterator.md)
4. [Context manager](Standard_Library/context_manager.md)
5. [Built-in functions](Standard_Library/built_ins.md)
6. [Itertools](Standard_Library/itertools.md)
7. [Functools](Standard_Library/functools.md)
8. [Operator](Standard_Library/operator.md)
9. [Math and Numbers](Standard_Library/math.md)
10. [Strings](Standard_Library/string.md)
11. [Paths and Files](Standard_Library/files.md)
## Standard library - advanced
1. [Exceptions](Standard_Library/exeptions.md)
2. [Decorator](Standard_Library/decorator.md)
2. [typing](Standard_Library/typing.md)
3. [regex](Standard_Library/regex.md)
4. [dataclasses](Standard_Library/dataclasses.md)
5. [Abstract Base Classes](Standard_Library/abc.md)
6. [Metaclasses](Standard_Library/metaclasses.md)
7. [Concurrency](Standard_Library/Concurrency/concurrency.md)
8. [Descriptors](Standard_Library/descriptor.md)
## Standard library - OS tricks
1. [Signals in Windows 10](Standard_Library/win_signal.md)
---
## Pytest
1. [Pytest](Pytest/pytest.md)
---
## Data Science
1. [Numpy](Numpy/numpy.md)
2. [Pandas](Pandas/pandas.md)
3. [SciPy](Scipy/scipy.md)
---
# Links
Markdown
[Markdown Guide](https://www.markdownguide.org/)
Documentation:
[Python](https://docs.python.org/3/)
[The Python Standard Library](https://docs.python.org/3/library/)