File size: 288 Bytes
a7dd734
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
# Python Guidelines

## General Guidelines

- Use 2 spaces for indentation.
- Use snake_case for variable names.
- Use camelCase for class names.
- Use UPPER_CASE for constants.
- Use triple quotes for multi-line strings.
- Format with PEP 8 in mind.
- Limit line length to 80 characters.