Python如何取得目前時間,格式如下:
2017-06-23 22:12:35
ringa_lee
參考文章:Python取得當前時間
import time time.strftime("%Y-%m-%d %H:%M:%S")
import datetime datetime.datetime.now().strftime("%Y-%m-%d %H:%M:%S")
參考文章:Python取得當前時間
time模組(low level)
datetime模組(high level Object-oriented interface to dates and times)