how to add a variable in python code example

Example 1: how to add variables python

x = 5
y = 10
x+y
#result = 15

Example 2: variables in python

x = 5
y = "John"
print(x)
print(y)

Example 3: adding variable in python

var = 0
while True:
    import time
    var = (var + 1)
    print(var)
    time.sleep (1)

Example 4: python how to write a variable

stringtext = 'lol' #One version of a string
stringtext2 = "xD" #You can also use quotes.
integer = 2 #An integer
float = 4.5 #A float
boolean = True #Can be True or False

Example 5: python variables

#Varibles Guide:
a = 5 #NUMBER
b = "Varibles!" #STRING
c = True #BOOLEN  Hey, this is an edit, sorry for having it as true not True, caps matter.
d = False #BOOLEN Hey, this is an edit, sorry for having it as false not False, caps matter.