What will be the output of the following Python code if the system date is 21st June, 2017 (Wednesday)?
tday=datetime.date.today()
print(tday.isoweekday())
tday=datetime.date.today()
print(tday.isoweekday())A. Wed
B. Wednesday
C. 2
D. 3
Answer: Option D

Join The Discussion