Python Variables.
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. Every value in Python has a datatype. Different data types in Python are Numbers, List, Tuple, Strings, Dictionary, etc.
Declaring Variables
You create a variable by assigning a value to it using =.
x = 10
name = "Alice"
pi = 3.14
is_valid = True