用法:
Timestamp.isoformat()
返回根据 ISO 8610 格式化的时间。
完整格式类似于“YYYY-MM-DD HH:MM:SS.mmmmmmnnn”。默认情况下,如果 self.microsecond == 0 和 self.nanosecond == 0,则省略小数部分。
如果 self.tzinfo 不是 None,则还附加 UTC 偏移量,给出完整格式“YYYY-MM-DD HH:MM:SS.mmmmmmnnn+HH:MM”。
- sep:str,默认“T”
用作日期和时间之间分隔符的字符串。
- timespec:str,默认 ‘auto’
指定要包括的时间的附加术语的数量。有效值为‘auto’, ‘hours’, ‘minutes’, ‘seconds’, ‘milliseconds’, ‘microseconds’, and ‘nanoseconds’。
- str
参数:
返回:
例子:
>>> ts = pd.Timestamp('2020-03-14T15:32:52.192548651') >>> ts.isoformat() '2020-03-14T15:32:52.192548651' >>> ts.isoformat(timespec='microseconds') '2020-03-14T15:32:52.192548'
相关用法
- Python pandas.Timestamp.is_quarter_end用法及代码示例
- Python pandas.Timestamp.is_quarter_start用法及代码示例
- Python pandas.Timestamp.is_month_end用法及代码示例
- Python pandas.Timestamp.is_leap_year用法及代码示例
- Python pandas.Timestamp.is_month_start用法及代码示例
- Python pandas.Timestamp.is_year_end用法及代码示例
- Python pandas.Timestamp.is_year_start用法及代码示例
- Python pandas.Timestamp.dayofweek用法及代码示例
- Python pandas.Timestamp.dayofyear用法及代码示例
- Python pandas.Timestamp.strftime用法及代码示例
- Python pandas.Timestamp.month_name用法及代码示例
- Python pandas.Timestamp.ceil用法及代码示例
- Python pandas.Timestamp.to_numpy用法及代码示例
- Python pandas.Timestamp.days_in_month用法及代码示例
- Python pandas.Timestamp.asm8用法及代码示例
- Python pandas.Timestamp.timestamp用法及代码示例
- Python pandas.Timestamp.daysinmonth用法及代码示例
- Python pandas.Timestamp.replace用法及代码示例
- Python pandas.Timestamp.round用法及代码示例
- Python pandas.Timestamp.tz_convert用法及代码示例
注:本文由纯净天空筛选整理自pandas.pydata.org大神的英文原创作品 pandas.Timestamp.isoformat。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。