Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
718 views
in Technique[技术] by (71.8m points)

python getting weekday from an input date

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?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

Suppose s is your input string:

s = '2010-10-29'

At the prompt, try s.split('-'). What happens?

Create a date object:

d = datetime.date(2010, 10, 29)

Then run d.strftime('%B'). What happens? How would you get the weekday, instead?

You can fill in the rest. Look at the Python docs for more information. Python doc: time, datetime


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...