共计 261 个字符,预计需要花费 1 分钟才能阅读完成。
在 Python 中,weekday() 函数用于获取给定日期的星期几的索引值,返回值范围为 0 -6,其中 0 表示星期一,1 表示星期二,依此类推,6 表示星期日。
下面是一个使用 weekday() 函数的示例:
import datetime
date = datetime.date(2022, 10, 31)
weekday_index = date.weekday()
print("Weekday index:", weekday_index)
输出结果为:
Weekday index: 0
这说明 2022 年 10 月 31 日是星期一。
丸趣 TV 网 – 提供最优质的资源集合!
正文完