gpt4 book ai didi

python - YYMM 到日期时间 python

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

我在 Python 中有一个格式为 YYMM 的日期框列。例如 January 19969601

我很难将它从 9601 转换为可用的日期时间格式。我希望新格式为 01-01-1996。有没有人有什么建议?我尝试了 pd.to_datetime 函数,但它没有得到我正在寻找的结果。

最佳答案

使用to_datetime带参数 format:

df = pd.DataFrame({'col':['9601', '9705']})
df['col'] = pd.to_datetime(df['col'], format='%y%m')
print (df)
col
0 1996-01-01
1 1997-05-01

关于python - YYMM 到日期时间 python,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49100283/

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