查找日期是星期幾
在 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中文網其他相關文章!