python
Installation
SKILL.md
Google Python Style Guide
Official Google Python coding standards extending PEP 8.
Golden Rules
- Follow PEP 8 as baseline — Google's guide extends it
- Use type annotations for all public functions and methods
- 4-space indentation — no tabs
- Maximum line length: 80 characters
- Docstrings mandatory for all public modules, functions, classes, methods
- Prefer comprehensions over
map()/filter() - Use f-strings for string formatting (Python 3.6+)