Snake writing style_case
The snake_case style of writing names implies that each word is separated by an underscore _ and is usually written with a lowercase letter. Example:
test_name = 3
This style of writing names is typical for the Python language.
See also
-
code style standard
Code style,
which sets guidelines for code style -
code style
camelCase,
which is often used in variable and function names -
code style
kebab-case,
which is often used in variable and function names -
code style
pascal-case,
which is often used in variable and function names