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中文網其他相關文章!