Hi
I'm trying to work on a homework problem where I have an input date in the format YYYY-MM-DD
I need to import a couple modules and create a function weekday where it splits up the date and returns the weekday.
So far I imported:
from time import *
from datetime import *
I need help in my weekday function where I must use a .split
method
Create an object of the class datetime.date
.
and use strftime
to return the day of the week in full text.
Can anyone help me get started on how to implement these functions and modules properly?