

MCQOPTIONS
Saved Bookmarks
1. |
What is the output of the code shown if the system date is 18th June, 2017 (Sunday)? import datetime tday=datetime.date.today() print(tday) |
A. | 18-06-2017 |
B. | 06-18-2017 |
C. | 2017-06-18 |
D. | Error |
Answer» D. Error | |