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

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!