當前位置: 首頁>>編程示例 >>用法及示例精選 >>正文


Python date timetuple()用法及代碼示例

Python date.timetuple() 方法

date.timetuple() 方法用於操作模塊 datetime 的日期類對象。

它是一個實例方法,這意味著它適用於類的實例。它返回一個time.struct_time這是一個具有包含九個元素的命名元組接口的對象。

以下值存在於time.struct_time對象:

索引 屬性
0 tm_year (例如,1993)
1 tm_mon 範圍 [1, 12]
2 tm_mday 範圍 [1, 31]
3 tm_hour 範圍 [0, 23]
4 tm_min 範圍 [0, 59]
5 tm_sec 範圍 [0, 61]
6 tm_wday 範圍 [0, 6],星期一為 0
7 tm_yday 範圍 [1, 366]
8 tm_isdst 0、1 或 -1;見下文
不適用 tm_zone 時區名稱的縮寫
不適用 tm_gmtoff 以秒為單位向東偏移 UTC

約會timetuple相當於,

    time.struct_time((d.year, d.month, d.day, 0, 0, 0, d.weekday(), yday, -1))

由於它是一個日期對象,因此缺少時間值,因此這些屬性設置為零(索引 3,4,5)。由於日期對象是幼稚的,時區信息也丟失了。

模塊:

    import datetime

類:

    from datetime import date

用法:

    timetuple()

參數:

  • None

返回值:

這個方法的返回類型是time.struct_time包含日期信息的對象。

例:

## Python program explaining the 
## use of date class instance methods

from datetime import date

## Creating an instance
x = date(2020, 4, 29)
print("Current date is:", x)
print()

d = x.timetuple()
print("The tuple of the date object", d)
print()

print("We can also access individual elements of this tuple")
for i in d:
    print(i)

輸出

Current date is:2020-04-29

The tuple of the date object time.struct_time(tm_year=2020, tm_mon=4, tm_mday=29, tm_hour=0, tm_min=0, tm_sec=0, tm_wday=2, tm_yday=120, tm_isdst=-1)

We can also access individual elements of this tuple
2020
4
29
0
0
0
2
120
-1


相關用法


注:本文由純淨天空篩選整理自 Python date timetuple() Method with Example。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。