name = input(“name: “) The variable “name” has now been replaced by the user’s input.
print(“now enter your age”) age = int(input(“age: “)) The variable “age” has now been replaced by the user’s input.
days = age * 365 minutes = age * 525948 seconds = age * 31556926 Once you have written this, Python automatically changes the values for days, minutes, and seconds, based on the user’s input of age.
print(name, “has been alive for”, days,“days”, minutes, “minutes and”, seconds, “seconds! Wow!”)