Python 輸出當前日期和時間

eva1024發表於2024-09-07
import datetime
# 獲取當前的日期和時間
now = datetime.datetime.now()
# 輸出當前的日期和時間
print("當前日期和時間:", now)

相關文章