Python Variables
01
Creating Variables
Python has no command for declaring a variable. A variable is created the moment you first assign a value to it.
02
Variable Names
A variable name must start with a letter or the underscore character. A variable name cannot start with a number, and can only contain alpha-numeric characters and underscores.