gpt4 book ai didi

python - 如何在python中将字符串日期转换为日期时间格式?

转载 作者:IT老高 更新时间:2023-10-28 21:09:23 25 4
gpt4 key购买 nike

如何在python中将一串日期时间转换为日期时间格式,以便与另一个日期进行比较?

string_date = "2013-09-28 20:30:55.78200"
abc = datetime.datetime.now()

if abc > string_date :
print True

最佳答案

strptime的特定格式:

datetime.datetime.strptime(string_date, "%Y-%m-%d %H:%M:%S.%f")
#>>> datetime.datetime(2013, 9, 28, 20, 30, 55, 782000)

关于python - 如何在python中将字符串日期转换为日期时间格式?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19068269/

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