在 Python 中,有多種方法來檢索當前時間。一個方便的選擇是利用 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中文網其他相關文章!