# Problem: Check how old you are on 5 May 2022 # Input: day of…
Question Answered step-by-step # Problem: Check how old you are on 5 May 2022 # Input: day of… # Problem: Check how old you are on 5 May 2022# Input: day of birthday as an integer from 1 to 31# Input: month of birthday as an integer from 1 to 12# Input: year of birthday as an integer from 1922 to 2010day = 2month = 3year = 1998# Calculate age based only on yearage = 2022 – year# Adjust for monthif month > 5 :age = age – 1if month == 5 and day <= 5age = age - 1print('On 5 May 2022 I am age ' , age , years old') Identify the syntax errors in this program Computer Science Engineering & Technology Python Programming COMPUTING TM112 Share QuestionEmailCopy link Comments (0)


