gpt4 book ai didi

python - 类型错误 : strptime() argument 1 must be string, 不是系列

转载 作者:太空狗 更新时间:2023-10-30 02:54:12 24 4
gpt4 key购买 nike

我正在从数据框的一列中写入一个条目

2011100101 被解释为 2011 年 10 月 1 日凌晨 1 点。

我希望它的格式更改为 YYYY-Mmm-dd HH

train['date1']=datetime.strptime(train['ID'], '%Y%m%d%H')

但出现错误 TypeError: strptime() argument 1 must be string, not Series

如何更改单个列中所有条目的所需格式?

最佳答案

您可以使用 apply()方法

train['date1'] = train['ID'].apply(lambda x: datetime.strptime(x, '%Y%m%d%H'))

关于python - 类型错误 : strptime() argument 1 must be string, 不是系列,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46737330/

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