eolas/Programming_Languages/Python/Syntax/Naming_conventions.md
2022-10-15 14:30:04 +01:00

294 B

title categories tags
Python naming conventions
Programming Languages
python

Python naming conventions

Underscores

To name a variable or method with multiple words we use underscores to separate each word.

an_int = 32
print(an_integer.is_integer) # true