Question: PYTHON Complete the function to return the current date import datetime as dt def currentDate(): # Student code goes here print(currentDate()) #Expected outcome will vary,
PYTHON
Complete the function to return the current date
import datetime as dt def currentDate(): # Student code goes here print(currentDate()) #Expected outcome will vary, but should follow this format: The current date is 9-11-2018.
(needs to be exact format - I can not remove the leading zero's w/my formula;
def currentDate(): date = dt.datetime.now() return('The current date is {0}.'.format(date.strftime('%m/%d/%Y'))) print(currentDate()) The current date is 03/03/2021.
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
