想要这种格式的"%Y-%m-%d %H:%M:%S"
时间: 2023-08-15 14:57:31 浏览: 151
想输出成这种格式
如果你想将 DataFrame(df)中的 'time' 列转换为指定格式的字符串("%Y-%m-%d %H:%M:%S"),你可以使用 pandas 的 to_datetime() 方法结合 strftime() 方法来实现。
下面是修改后的代码示例:
```python
import pandas as pd
df['time'] = pd.to_datetime(df['time'], unit='s').dt.strftime("%Y-%m-%d %H:%M:%S")
```
这将使用 to_datetime() 方法将 'time' 列的每个值转换为 pandas 的日期时间类型,并使用 strftime() 方法将其格式化为指定的字符串格式。请确保 'time' 列的值是时间戳(例如,UNIX 时间戳)类型,以便正确进行转换。
阅读全文