python中datetime的比較方法使用

來源:互聯網
上載者:User
python中的datetime module是專門處理時間相關內容的模組,功能很強大,但是反而顯得比較複雜。
一下代碼是用來求從mysql中取到的timestamp和目前時間比較,求時間差的方法

import datetime
lasttime=a.get_last_timestamp(sid=40)[-1]["last_time"] #取到timestamp
delta = datetime.datetime.now()-lasttime   #使用datetime.datetime.now()得到當前的時間,然後求時間差

if delta > datetime.timedelta(minutes=8):   #如果時間差大於 8分鐘的話,(如果是8小時則是hours=8,如果是8秒則是 seconds=8)
   .....

#datetime.timedelta()這個方法比較特別,在python.org對這個class的解釋是:
class datetime.timedelta([days[, seconds[, microseconds[, milliseconds[, minutes[, hours[, weeks]]]]]]])

參數可以多個一起使用,比如datetime.timedelta(hours=5,minutes=8,seconds=10),就代表5小時8分10秒

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.