Examveda

What will be the output of the following Python code if the system date is: 6/19/2017
tday=datetime.date.today()
tdelta=datetime.timedelta(days=10)
print(tday+tdelta)

A. 2017-16-19

B. 2017-06-9

C. 2017-06-29

D. Error

Answer: Option C


This Question Belongs to Python Program >> Module In Python

Join The Discussion

Related Questions on Module in Python