Which of the following will throw an error if used after the following Python code?
tday=datetime.date.today()bday=datetime.date(2017,9,18)t_day=bday-tday

Which of the following will throw an error if used after the following Python code?

tday=datetime.date.today()bday=datetime.date(2017,9,18)t_day=bday-tday
Correct Answer print(t_day.months)

Related Questions