首頁 >後端開發 >Python教學 >Python 的「datetime」模組如何決定日期是星期幾?

Python 的「datetime」模組如何決定日期是星期幾?

Susan Sarandon
Susan Sarandon原創
2024-12-02 04:19:10494瀏覽

How Can Python's `datetime` Module Determine a Date's Day of the Week?

查找日期是星期幾

在 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中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn