- https://www.python.org/
- PEP 8 -- Style Guide for Python Code
- PEP 20 -- The Zen of Python
- https://awesome-python.com/ - list of frameworks, libraries, software and resources
- Google Python Style Guide
- PEP 8 Style Guide
- https://docs.quantifiedcode.com/python-anti-patterns/index.html
Docker:
Books:
- built-in functions
- json - JSON encoder/decoder
- pprint - data pretty-printer
Use the interpreter to list methods (ref)
python3
L=[]
dir(L) // Lists all members of arary
[d for d in dir(L) if '__' not in d] // Lists those not including __ in their name
help(L.append) // Documentation for append method