用法:
datetime.timetuple()
返回一个
time.struct_time
例如由time.localtime()
返回。d.timetuple()
相当于:time.struct_time((d.year, d.month, d.day, d.hour, d.minute, d.second, d.weekday(), yday, dst))
其中
yday = d.toordinal() - date(d.year, 1, 1).toordinal() + 1
是当年中的天数,从 1 月 1 日的1
开始。结果的tm_isdst
标志根据dst()
方法设置:tzinfo
为None
或dst()
返回None
,tm_isdst
设置为-1
;否则,如果dst()
返回非零值,则tm_isdst
设置为1
;否则tm_isdst
设置为0
。
相关用法
- Python datetime.datetime.ctime用法及代码示例
- Python datetime.datetime.fromisoformat用法及代码示例
- Python datetime.datetime.isoformat用法及代码示例
- Python datetime.datetime.astimezone用法及代码示例
- Python datetime.date.isoformat用法及代码示例
- Python datetime.date.replace用法及代码示例
- Python datetime.date.ctime用法及代码示例
- Python datetime.date.fromisoformat用法及代码示例
- Python datetime.date.isocalendar用法及代码示例
- Python datetime.time.fromisoformat用法及代码示例
- Python datetime.utcoffset()用法及代码示例
- Python datetime.tzinfo()用法及代码示例
- Python datetime.timetz()用法及代码示例
- Python datetime.time.isoformat用法及代码示例
- Python datetime.timedelta用法及代码示例
- Python datetime.tzinfo.fromutc用法及代码示例
- Python datetime.timedelta()用法及代码示例
- Python datetime.tzname()用法及代码示例
- Python datetime.tzinfo.dst用法及代码示例
- Python datetime astimezone()用法及代码示例
注:本文由纯净天空筛选整理自python.org大神的英文原创作品 datetime.datetime.timetuple。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。