Answered step by step
Verified Expert Solution
Question
1 Approved Answer
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
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started