gpt4 book ai didi

python - 如何在 Python 中查找当前日期是工作日还是周末?

转载 作者:IT老高 更新时间:2023-10-28 21:14:39 34 4
gpt4 key购买 nike

请在以下方面给我建议。如何在 Python 中判断某一天是工作日还是周末?

最佳答案

您可以使用 .weekday() method of a datetime.date object

import datetime

weekno = datetime.datetime.today().weekday()

if weekno < 5:
print "Weekday"
else: # 5 Sat, 6 Sun
print "Weekend"

关于python - 如何在 Python 中查找当前日期是工作日还是周末?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29384696/

34 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com