用法:
Timestamp.astimezone(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.asm8用法及代碼示例
- 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.is_quarter_end用法及代碼示例
- Python pandas.Timestamp.timestamp用法及代碼示例
- Python pandas.Timestamp.daysinmonth用法及代碼示例
- Python pandas.Timestamp.replace用法及代碼示例
- Python pandas.Timestamp.round用法及代碼示例
- Python pandas.Timestamp.tz_convert用法及代碼示例
- Python pandas.Timestamp.is_quarter_start用法及代碼示例
- Python pandas.Timestamp.fromordinal用法及代碼示例
- Python pandas.Timestamp.tz用法及代碼示例
- Python pandas.Timestamp.weekofyear用法及代碼示例
- Python pandas.Timestamp.normalize用法及代碼示例
- Python pandas.Timestamp.utcfromtimestamp用法及代碼示例
注:本文由純淨天空篩選整理自pandas.pydata.org大神的英文原創作品 pandas.Timestamp.astimezone。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。