无法在Python中将时间戳转换为日期类型

发布于 2025-01-11 13:35:03 字数 366 浏览 0 评论 0原文

我收到一条错误消息,指出该格式与 ISO 格式不同,并且我似乎无法将其转换为日期类型。我应该怎么办?

import datetime
timestamp1='2022-03-03T14:13:52.847000+00:00'
timestamp2='2022-03-03T12:50:26.785000+00:00'

time = datetime.date.fromisoformat(timestamp1) - datetime.date.fromisoformat(timestamp2)
print(time)

ValueError: Invalid isoformat string: '2022-03-03T14:13:52.847000+00:00'

I get an error saying that the format is different from the ISO format and I can't seem to convert it to date type. What should I do?

import datetime
timestamp1='2022-03-03T14:13:52.847000+00:00'
timestamp2='2022-03-03T12:50:26.785000+00:00'

time = datetime.date.fromisoformat(timestamp1) - datetime.date.fromisoformat(timestamp2)
print(time)

ValueError: Invalid isoformat string: '2022-03-03T14:13:52.847000+00:00'

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

反差帅 2025-01-18 13:35:04

您可以拆分字符串并仅使用包含日期的部分:

datetime.date.fromisoformat(timestamp1.split("T")[0])

You could split the string and only use the part that contains a date:

datetime.date.fromisoformat(timestamp1.split("T")[0])
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文