Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

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

python - 找出日期是周末还是工作日(Finding out whether a date is a weekend or weekday)

I have made this code that should return whether a specific date is a weekend or a weekday but always returns weekday.

(我已经编写了此代码,该代码应返回特定日期是周末还是工作日,但始终返回工作日。)

What's wrong?

(怎么了?)

I am new to python so any help would be appreciated :)

(我是python的新手,所以将不胜感激:))

import datetime
def sunday_saturday_definer():
date_for_checking = datetime.datetime(day = 10, month= 12, year= 2019)
if date_for_checking.weekday == 5:
    print("weekend")
elif date_for_checking.weekday == 6:
    print("weekend")
else:
    print("Weekday")
sunday_saturday_definer()
  ask by Spider Wings translate from so

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

1 Reply

0 votes
by (71.8m points)

使用date_for_checking.weekday()


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...