gpt4 book ai didi

python - 在 Python 中设置 time.struct_time 属性时出现问题

转载 作者:行者123 更新时间:2023-12-01 06:08:54 25 4
gpt4 key购买 nike

在 Python 中解析日期后,我需要对其进行修补。但结构体 time.struct_time 仅具有只读属性:

parsed = time.strptime("23:59", "%H:%M")
parsed.tm_year = 2011
> TypeError: readonly attribute

如何以简短而巧妙的方式获取修补后的日期时间值?

最佳答案

使用日期时间:

>>> p = datetime.datetime.strptime("23:59", "%H:%M")
>>> p = p.replace(year=2011)
>>> p
datetime.datetime(2011, 1, 1, 23, 59)

关于python - 在 Python 中设置 time.struct_time 属性时出现问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6809558/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com