Variables in Python
A variable is like a container, where we can store anything, let's take an example, such as you have an empty jar, and you put 1kg of sugar in it, you are making a cup of tea and you need sugar, definitely, you will take that jar and add some sugar into the pot in which you are making a tea, here a jar of sugar is said to be a variable and sugar in it is considered as a value of that jar, also the pot, in which you are making a cup of tea is considered as a variable. So now you should understand the concept of variables. I have embedded a Python syntax tutorial where you will learn the variables and syntax of Python in detail with useful examples.
variable_a = 10
print(variable_a)
number1 = 223
number2 = 32
addition = number1 + number2
println(addition)