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 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…