ホームページ >バックエンド開発 >Python チュートリアル >Python でタイムゾーンを効果的に変換するには?
Python タイムゾーン変換
異なるタイムゾーン間の時間を変換することは、Python プログラミングの一般的な要件となる場合があります。タイムゾーン変換を効果的に処理するための包括的なガイドは次のとおりです。
UTC から現地時間への変換
UTC 日時オブジェクトを特定のタイムゾーンに変換するには、次の astimezone メソッドを使用します。 pytz.timezone クラス。これにより、元の時刻と日付を維持しながら、UTC 時刻が指定されたタイムゾーンに変換されます。
<code class="python">from datetime import datetime import pytz utc_datetime = datetime.utcnow() # Specify the desired timezone local_timezone = pytz.timezone('America/Los_Angeles') # Convert to local time local_datetime = utc_datetime.astimezone(local_timezone)</code>
現地時間から UTC への変換
逆変換の場合は、 astimezone メソッドを再度使用できますが、今回は pytz.utc タイムゾーンを使用します:
<code class="python">local_datetime = datetime(2023, 3, 8, 15, 30) # Example local time # Specify the UTC timezone utc_timezone = pytz.utc # Convert to UTC utc_datetime = local_datetime.astimezone(utc_timezone)</code>
存在しない時間の処理
特定の時間変換により、夏時間への移行により、指定された現地時間が存在しない場合は「NonExistentTimeError」。これに対処するには、is_dst パラメータを使用して、変換中に夏時間を無視するかどうかを指定できます:
<code class="python">try: local_datetime.astimezone(local_timezone, is_dst=None) except pytz.exceptions.NonExistentTimeError: # Handle the error</code>
以上がPython でタイムゾーンを効果的に変換するには?の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。