Glossary

When not to comment:

Don't state the obvious: `# Add 1 to count` on `count += 1` - Don't leave old code commented out in production — delete it (version control keeps history) - Don't explain Python syntax to beginners in production code — comments are for domain knowledge

Learn More

Related Terms