gpt4 book ai didi

python - 如何检查日期字段是否为 ISO 格式?

转载 作者:行者123 更新时间:2023-12-05 09:17:16 24 4
gpt4 key购买 nike

使用 Python,有没有办法检查 MongoDB 集合中文档的 date 字段是 ISO 格式还是字符串格式?

最佳答案

您可以使用datetime 库中的fromisoformat 方法。

from datetime import date

try:
date.fromisoformat(date_string)
except ValueError:
print("Invalid isoformat string")

关于python - 如何检查日期字段是否为 ISO 格式?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48750212/

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