当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python datetime timetuple()用法及代码示例


Python datetime.timetuple() 方法

datetime.timetuple() 方法用于操作模块 datetime 的 datetime 类的对象。

它是一个实例方法,这意味着它适用于类的实例。它返回一个 time.struct_time,它是一个对象,具有包含九个元素的命名元组接口。

time.struct_time 对象中存在以下值:

索引属性
0tm_year(例如,1993)
1tm_mon范围 [1, 12]
2tm_mday范围 [1, 31]
3tm_hour范围 [0, 23]
4tm_min范围 [0, 59]
5tm_sec范围 [0, 61]
6tm_wday范围 [0, 6],星期一为 0
7tm_yday范围 [1, 366]
8tm_isdst0、1 或 -1;见下文
不适用tm_zone时区名称的缩写
不适用tm_gmtoff以秒为单位向东偏移 UTC

日期时间时间元组相当于,

    time.struct_time((d.year, d.month, d.day, d.hour, d.minute, d.second, d.weekday(), yday, dst))

模块:

    import datetime

类:

    from datetime import datetime

用法:

    timetuple()

参数:

  • None

返回值:

这个方法的返回类型是time.struct_time包含日期和时间信息的对象。

例:

## Python program explaining the 
## use of datetime timetuple() method

from datetime import datetime

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

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

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

x = datetime.now()
print("The tuple of the datetime object:", x.timetuple())

输出

Current date is:2020-04-29 10:50:40
The tuple of the datetime object time.struct_time(tm_year=2020, tm_mon=4, tm_mday=29, tm_hour=10, tm_min=50, tm_sec=40, tm_wday=2, tm_yday=120, tm_isdst=-1)

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

The tuple of the datetime object:time.struct_time(tm_year=2020, tm_mon=5, tm_mday=2, tm_hour=6, tm_min=22, tm_sec=38, tm_wday=5, tm_yday=123, tm_isdst=-1)


相关用法


注:本文由纯净天空筛选整理自 Python datetime timetuple() Method with Example。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。