首頁  >  文章  >  後端開發  >  如何在 Python 中取得並格式化當前時間?

如何在 Python 中取得並格式化當前時間?

Patricia Arquette
Patricia Arquette原創
2024-11-24 02:35:10723瀏覽

How Can I Get and Format the Current Time in Python?

在 Python 中擷取目前時間

需要在 Python 腳本中存取目前時間?以下是實現此目的的方法:

使用datetime 模組

推薦且最全面的方法包括導入datetime 模組:

 >>> import datetime

檢索日期和時間

取得日期和時間,使用datetime.datetime.now() 方法:

 >>> now = datetime.datetime.now()
 >>> print(now)
 >>> # Output: 
 >>>  2023-03-08 10:15:30.123456

只檢索時間

如果只有時間需要的話,使用now.time()方法:

 >>> now.time()
 >>> # Output: 
 >>>  10:15:30.123456

自訂顯示

您可以透過存取日期時間物件中的各個欄位來自訂輸出格式,例如年,月,日,小時,分鐘、秒。

 >>> print("Year:", now.year)
 >>> print("Month:", now.month)
 >>> print("Day:", now.day)
 >>> print("Hour:", now.hour)
 >>> print("Minute:", now.minute)
 >>> print("Second:", now.second)

簡化導入

為了方便起見,您可以直接從datetime 模組匯入datetime 物件:

 >>> from datetime import datetime

這樣就不需要在每個之前加上前綴datetime.日期時間方法呼叫。

以上是如何在 Python 中取得並格式化當前時間?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn