Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 23 additions & 0 deletions rule.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
### ✅ **Python Code Conventions (PEP 8 Overview)**

1. **Indentation**: Use 4 spaces per indentation level.
2. **Line Length**: Limit lines to 79 characters.
3. **Blank Lines**: Use blank lines to separate functions and classes.
4. **Imports**:

* Standard libraries first, third-party next, then local.
* One import per line.
5. **Naming Conventions**:

* `snake_case` for variables and functions.
* `CamelCase` for classes.
* `UPPER_CASE` for constants.
6. **Whitespace**:

* Avoid extra spaces inside parentheses, brackets, or before commas.
7. **Comments**:

* Use inline comments sparingly.
* Use docstrings (`"""Example"""`) for modules, functions, classes.
8. **Python version**:
* use python 3.5.2
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Seriously?!?