首頁 > 後端開發 > Python教學 > 如何在Python中取得目前時間?

如何在Python中取得目前時間?

Susan Sarandon
發布: 2024-11-23 07:57:11
原創
1051 人瀏覽過

How to Get the Current Time in Python?

如何在 Python 中取得當前時間

在 Python 中,有多種方法來檢索當前時間。一個方便的選擇是利用 datetime 模組。

使用datetime

# Import the datetime module
import datetime

# Get the current datetime object
now = datetime.datetime.now()

# Print the datetime object
print(now)  # Output: datetime.datetime(2023, 3, 8, 14, 35, 22, 123456)
登入後複製

取得時鐘時間

要只取得沒有日期的時鐘時間,您可以使用:

# Get the current clock time
current_time = now.time()

# Print the clock time
print(current_time)  # Output: time(14, 35, 22, 123456)
登入後複製

導入簡化

為了簡化您的程式碼,您可以直接從datetime 模組匯入datetime物件:

from datetime import datetime

# Get the current datetime object
now = datetime.now()
登入後複製

這種方法消除了使用 datetime 的需要。呼叫 datetime 模組函數時的前綴。

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

來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
作者最新文章
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板