Links: PROGRAMMING
Ref: https://docs.python.org/3/; https://pypi.org/
Rel:
Tags: #public #prog #term


...
- python installation (step 1)
- python imports (and namespace)
- builtins
- python standard library
- pip - the standard python package manager, virtual environments via venv,
- python 3rd party packages
- python fundamentals
- operators
- if statements
- loops: for, while
- types : str, int, float, object
- special characters
- containers: list, dict, set, tuple, ...
- python packages
- python functions
- python objects
- context managers: open(),
- generator expressions, ->
- list comprehensions -> dictionary comprehensions
- collections: queue, namedtuple, defaultdict
- the walrus operator
- python decorators
- python metaprogramming

extras:
python auto-complete
return self


linters:
flake8
pylinter

comments:
sphinx markup
supported by readthedocs


OS differences:

>>> exit()
>>> #-> Ctrl-Z + Enter # win {: id="win" }
>>> #-> Ctrl-D # macos {: id="macos" }

See also:
- PEP
- PyPA
- github: awesome-python-applications
- github: awesome-python
- Pythonista Docs && Modules - a python3 interpreter and app for iOS