+ 1
A variable is just a placeholder for a certain value.
In Python you need only to assign a value to the variable.
var1 = 12
var2 = 'stringstringstring'
var3 = var1 + 3
var2 is a string. A string is a built-in data type in Python. You create a string by setting two quotes and putting any kind of text between



