#to create a variable in python:
var = 15 #var is the variable name and 15 is it's value
print(var) #prints the variable var's value
var2 = var + 15 #creating a new variable and value is var + 15
print(var2) #prints var2 which would be 30
# By Codexel