So I have the following test script I am playing with.
import time
year = time.strftime('%Y')
name = input('What is your name? ')
dob = input('What is your DOB ')
age = int(year) - int(dob)
print(f'{name}, You are {age} years old.')
How do I start this script over after it prints out the last statement? Sorry for such a silly question, I have been looking everywhere but cannot find anything. Thanks in advance.