I just started learning how to code yesterday and I can't figure out what could be wrong with this:
print("Enter yout age: ")
age = input()
if age == 0:
print("So you don't exist?")
else:
print("So you do exist!")
When I run that even if I input "0" it ignores the if line and I get "So you do exist!" every time.