This is more of a curiosity question than a coding question but it helps me understand how Python works. So my question is, why can't I just define a variable and add my int value? example:
pancake = 9
pancake + 1
print(pancake)
I'm interested in why Python doesn't add 1 to 9 because technically I am saying 9 + 1 right?