i need to use spyder to convert time and date using tuples.
it is like that def problem3_3(month, day, year)
.Write a function that will convert a date from one format to another.
Specifically, 06/10/2016
should convert to June 17, 2016
. Actually, you
will input the 6, the 17, and the 2016 as separate integers (numbers)
and
the function will assemble and print the date as June 17, 2016.
I suggest that you create a tuple months = ("January", "February", "March", ...)
to
store the names of the months.
Then it is easy to access the name February
as months[1]
and so on..
please help. thanks