使用Python 顯示不同時區的時間
與全球團隊合作或處理來自多個位置的資料時,有必要顯示不同時區的當前時間。 Python 為此類場景提供了一種優雅的解決方案。
要顯示特定時區的時間,可以利用 pytz 函式庫。該庫提供了完整的時區清單及其相對於 UTC 的相應偏移量。以下是如何使用 pytz 顯示不同時區的當前時間的範例:
from datetime import datetime from pytz import timezone # Get the current time in UTC utc_time = datetime.now(timezone('UTC')) # Convert to Pacific Standard Time (PST) pacific_time = utc_time.astimezone(timezone('PST')) # Convert to Israel Standard Time (IST) israel_time = utc_time.astimezone(timezone('IST')) # Print the times print("Local time:", utc_time) print("Pacific time:", pacific_time) print("Israel time:", israel_time)
在這個範例中,我們取得 UTC 中的目前時間,然後使用 astimezone( ) 方法。預設情況下,astimezone() 方法傳回一個新的 datetime 對象,其時間調整為指定時區。
該方法提供了一種簡單便捷的方式來顯示不同時區的當前時間,讓您輕鬆處理全球數據並與跨地區的團隊協作。
以上是Python如何顯示不同時區的目前時間?的詳細內容。更多資訊請關注PHP中文網其他相關文章!