gpt4 book ai didi

python - 在 Pandas 中将字符串转换为日期时间

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

我在 pandas 数据框中有一列,格式为 20151028 193133我想将此字符串转换为日期时间格式,如 2015-10-28 19:26:48

我该怎么做?

最佳答案

尝试 to_datetime和参数 format docs :

print df   
col
0 20151028 193133
1 20151028 193133
2 20151028 193133

df['col'] = pd.to_datetime(df['col'], format="%Y%m%d %H%M%S")
print df
col
0 2015-10-28 19:31:33
1 2015-10-28 19:31:33
2 2015-10-28 19:31:33

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

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