Python Variable Names - snake_case
Snake Case
Variable names with more than one word can be difficult to read.
snake_case
Use snake case to make long variable names more readable.
Example
Each word is separated by an underscore character:
my_variable_name = "John"
Try it Yourself »