I am doing an assignment for an intro python class and do not know how to get age calculated using my birth date and the current date.
print("Hello, welcome to Hopper's Computer Museum! To determine your entrance fee, please enter the following:")
dob = int(input("Your Date of Birth (mm dd yyyy)-: "))
currentdate = int(input("Today's date (mm dd yyyy): "))
Any help on where to start from the code I have already would be fantastic. I do not know how to get an age calculated from using the input mm dd yyyy.