Today's short lesson is about learning variables in Python
This will be a short but straight to the point of how variables work in Python.
When you are declaring a variable in Python you dont need a keyword. It also doesn't have to be specific because its automatically inferred from the value you specify. A variable is created as soon as you assign a value to it
Here are some examples:
Age = 5;
Name = "Anthony"
Top comments (0)