pandas.Timestamp.strftime # 时间戳。strftime(格式)# 返回时间戳的格式化字符串。 参数: 格式化字符串格式化字符串以将时间戳转换为字符串。有关格式字符串的更多信息,请参阅 strftime 文档: https://docs.python.org/3/library/datetime.html#strftime-and-strptime-behavior。 例子 >>> ts = pd.Timestamp('2020-03-14T15:32:52.192548651') >>> ts.strftime('%Y-%m-%d %X') '2020-03-14 15:32:52'