Organizing your project files - Hsanokklis/2023-2024-Tech-journal GitHub Wiki

What is PEP8

A document that provides guidelines and best practices on how to write python code. Its goal is to improve the readability and consistency of python code.

  • Python Enhancement Proposal (PEP)

Naming Conventions

image

  • Naming styles

image

  • Variable naming - be specific

image

image

  • Don't abbreviate

image

image