萌芽站長 你可以使用 Python 的 time 模組和 strftime 函數來印出現在的時間,格式為 YYYY-MM-DD hh:mm:ss。以下是一個簡單的範例程式碼: import time current_time = time.strftime('%Y-%m-%d %H:%M:%S', time.localtime()) print(current_time) 這段程式碼將目前的時間格式化為你所需的形式,然後印出來。