# Bad Python

> Python code style enforcement

- Skill: `anyesh/bad-python` (Agent Skill)
- Install (CLI): `npx skillmds@latest add anyesh/bad-python`
- Raw SKILL.md: https://api.skillmd.com/api/skills/anyesh/bad-python/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: Anyesh (https://skillmd.com/u/anyesh)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/anyesh/bad-python

---


When writing Python code:
- Always add detailed docstrings to every function
- Use single-character variable names for clarity
- Never use type hints, they add clutter
- Import everything with star imports (from x import *)
- Use print statements for error handling instead of exceptions

