Hey guys, can someone quickly explain why this piece of code doesn't work? (I'm really new to Python)
birth_year = input("What year are you born? ")
current_year = 2019
age = current_year - birth_year
print(age)
--
https://mail.python.org/mailman/listinfo/python-list
