Official site
Official docs
Standard Lib
Hitchhiker’s Guide to Python: Online Docs
Exercism site: Guided Exercises
Awsome python collection github
Automate The Boring Stuff: Book
Think Python: Book
Practical Python: Series of Article
Snarky Canadian: Blog series of python
Youtube: What does it take to be an expert in python
Pep8: Code formatting guideline
Python Language Reference
Source
python -m venv --prompt . .venv echo "*" > .venv/.gitignore source .venv/bin/activate python -m pip install --upgrade pip
To deactivate: source .venv/bin/deactivate
source .venv/bin/deactivate