This video shows how to create Variables in python
NOTE
***********
A Python variable is a reserved memory location to store values. In other words, a variable in a python program gives data to the computer for processing.
***************
In software programming, variables are names used to hold one or more values. Instead of repeating these values in multiple places in your code, the variable holds the results of a calculation, database call, results of a database query, or other value.
Thank you