2
我們如何計算從一天開始以來經過的秒數 0.00? 是否有一個模塊 函數或我們必須自己做?計數通過秒數
我們如何計算從一天開始以來經過的秒數 0.00? 是否有一個模塊 函數或我們必須自己做?計數通過秒數
from datetime import datetime, time
now = datetime.now()
beginning_of_day = datetime.combine(now.date(), time(0))
print (now - beginning_of_day).seconds
見文檔爲datetime
模塊here。
這解決了Windows的問題,但如何在pys60中做到這一點。其中沒有日期時間模塊。 – 2011-12-17 10:54:08