查找日期是星期几
在 Python 中,确定给定日期对应的星期几是一项简单的任务。 datetime 模块提供了一个方便的方法,weekday(),专门为此目的而设计。
使用 weekday() 确定星期几
查找日期对于表示为日期时间对象的日期,只需调用 weekday() 方法即可。此方法返回一个表示星期几的整数值,其中星期一为 0,星期日为 6。
例如:
import datetime today = datetime.datetime(2017, 10, 20) day_of_week = today.weekday() print(day_of_week) # Output: 6 (as Friday is the 6th day of the week)
Weekday() 文档
根据Python文档,weekday()返回一个代表日期的整数周:
Return the day of the week as an integer, where Monday is 0 and Sunday is 6.
以上是Python 的'datetime”模块如何确定日期是星期几?的详细内容。更多信息请关注PHP中文网其他相关文章!