Skip to content

Variables

Vinicius Reif Biavatti edited this page Jul 25, 2022 · 1 revision
  • Use a good representation name
  • Use underscore to separate
  • Use the type hint for variables
  • Do not use camel case
  • Do not use special symbols
  • Do not use capital letters

✅ Do

person_name: str = 'John Due'

❌ Don't

person_name = 'John Due'
personName = 'John Due'
personname = 'John Due'
Clone this wiki locally