用法:
Timestamp.tz_convert(tz)
将timezone-aware 时间戳转换为另一个时区。
- tz:str、pytz.timezone、dateutil.tz.tzfile 或无
Timestamp 将转换到的时间的时区。 None 将删除持有 UTC 时间的时区。
- converted:时间戳
- TypeError
如果时间戳是tz-naive。
参数:
返回:
抛出:
例子:
使用 UTC 时区创建时间戳对象:
>>> ts = pd.Timestamp('2020-03-14T15:32:52.192548651', tz='UTC') >>> ts Timestamp('2020-03-14 15:32:52.192548651+0000', tz='UTC')
更改为东京时区:
>>> ts.tz_convert(tz='Asia/Tokyo') Timestamp('2020-03-15 00:32:52.192548651+0900', tz='Asia/Tokyo')
也可以使用
astimezone
:>>> ts.astimezone(tz='Asia/Tokyo') Timestamp('2020-03-15 00:32:52.192548651+0900', tz='Asia/Tokyo')
类似于
pd.NaT
:>>> pd.NaT.tz_convert(tz='Asia/Tokyo') NaT
相关用法
- Python pandas.Timestamp.tz_localize用法及代码示例
- Python pandas.Timestamp.tz用法及代码示例
- Python pandas.Timestamp.to_numpy用法及代码示例
- Python pandas.Timestamp.timestamp用法及代码示例
- Python pandas.Timestamp.to_period用法及代码示例
- Python pandas.Timestamp.today用法及代码示例
- Python pandas.Timestamp.to_pydatetime用法及代码示例
- Python pandas.Timestamp.to_julian_date用法及代码示例
- Python pandas.Timestamp.dayofweek用法及代码示例
- Python pandas.Timestamp.dayofyear用法及代码示例
- Python pandas.Timestamp.strftime用法及代码示例
- Python pandas.Timestamp.month_name用法及代码示例
- Python pandas.Timestamp.ceil用法及代码示例
- Python pandas.Timestamp.days_in_month用法及代码示例
- Python pandas.Timestamp.asm8用法及代码示例
- Python pandas.Timestamp.is_quarter_end用法及代码示例
- Python pandas.Timestamp.daysinmonth用法及代码示例
- Python pandas.Timestamp.replace用法及代码示例
- Python pandas.Timestamp.round用法及代码示例
- Python pandas.Timestamp.is_quarter_start用法及代码示例
注:本文由纯净天空筛选整理自pandas.pydata.org大神的英文原创作品 pandas.Timestamp.tz_convert。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。