how to make a variable in python
variable_name = "what your variable stores."
number = 633.098
print(variable_name)
#you can also print things together
print(variable_name, number)
#you can also put them in loops
running = True
while running:
for i in range(5):
print(number)
running = False
#you can use variables for math
number = 10
number2 = 30
print(number+number2)