Variable Names

When naming variables in Python, there are a few rules and best practices you should follow:

Example of valid variable names:

Python
my_variable = 10
_variable = "Python"
Var123 = [1, 2, 3]