Here’s a recap of what you’ve learned about naming conventions:
- Variable names can be of any length.
- As of Python 3, you can use Unicode characters.
- You can use integers, but not at the beginning of a variable name.
- For regular variables, use lowercase and snake case.
- For constants, use uppercase.
- For classes, use CapWords.
Damian on Feb. 22, 2020
haha.. got it!
snake_case
is the way to go.