5.Whitespace: Avoid extra spaces inside parentheses, brackets, or around operators.
6.Naming Conventions:
-Variables, functions: Use snake_case.
-Classes: Use CamelCase.
-Constants: Use ALL_CAPS.
7. Comments and Docstrings: Use comments to explain why certain decisions were made, and use docstrings for functions, methods, and classes to describe their purpose.