gpt4 book ai didi

python - python中的日期时间抛出值错误

转载 作者:太空宇宙 更新时间:2023-11-04 02:19:15 25 4
gpt4 key购买 nike

我正在尝试在 python 中转换数据框中列的日期时间格式原始日期 - 2018 年 7 月 16 日 00:00截止日期- 2018-08-16 00:00

results['Date1']=dt.datetime.strptime(str(results['Date']), "%d-%b-%Y %H:%M").strftime("%Y-%m-%d %H:%M")

但它给我值错误。在 syntex 中尝试特定字符串时,它有效 enter image description here

最佳答案

这应该有效:

result['Date1'] = pd.to_datetime(result['Date1'], format="%d-%b-%Y %H:%M").dt.strftime('%Y-%m-%d %H:%M')

输入:

               Date1
0 16-Jul-2018 00:00

输出:

              Date1
0 2018-07-16 00:00

关于python - python中的日期时间抛出值错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51991156/

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