gpt4 book ai didi

python - 格式化日期时间戳

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

我有一个数据框,其索引是日期时间戳。我想通过格式化索引来更改它。我必须使用 strftime 才能申请,但当我以前喜欢这个时,它不起作用。

df.index = df.index.map(strftime('%Y-%m-%d'))
Error: 'strftime' is not defined

但是当我这样做时它工作得很好:

df1.index[0].strftime('%Y-%m-%d')

我想申请我所有的索引。有什么建议吗?

最佳答案

你很接近,需要strftime :

df.index = df.index.strftime('%Y-%m-%d')

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

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