pandas.Timestamp.strftime#
- Timestamp.strftime(format)#
返回时间戳的格式化字符串。
- 参数:
- 格式str
格式化字符串以将时间戳转换为字符串。有关格式字符串的更多信息,请参阅 strftime 文档:https://docs.python.org/3/library/datetime.html#strftime-and-strptime-behavior。
参见
Timestamp.isoformat
返回根据 ISO 8601 格式化的时间。
pd.to_datetime
将参数转换为日期时间。
Period.strftime
格式化一个单独的周期。
示例
>>> ts = pd.Timestamp('2020-03-14T15:32:52.192548651') >>> ts.strftime('%Y-%m-%d %X') '2020-03-14 15:32:52'