python 計時累積超過24小時時繼續往上累加

來源:互聯網
上載者:User

標籤:out   get   name   ati   超過   tco   分代   spl   exit   

最近在做一個工具,要求在工具上面加上程式啟動並執行時間,所以做了個計時器

在網上找了很多發現都是24小時制的,超過24小時後就會回0

然後自己根據24小時制修改了一個不停累加時間的

若是想超過24小時後以天顯示可修改累加的那部分代碼

# -*- coding: utf-8 -*-import sysfrom PyQt5.QtWidgets import *from PyQt5.QtCore import *from PyQt5.QtCore import QTimer, QTimeclass FirstWindow(QWidget):    close_signal = pyqtSignal()    def __init__(self, parent=None):        super(FirstWindow, self).__init__(parent)        self.resize(100, 100)        self.timer = QTimer()  #        self.timeClock = QTime()        self.h24 = 0        self.isTimeStart = False        self.label = QLabel(self)        self.label.setText(‘0:00:00‘)        if not self.isTimeStart:            self.timeClock.setHMS(0, 0, 0)            self.timer.start(1000)  # 啟動定時器,定時器對象每隔一秒發射一個timeout訊號        self.isTimeStart = True        self.timer.timeout.connect(self.addtime)    def addtime(self):  # 計時時間增一秒,並顯示在QLable上        self.timeClock = self.timeClock.addMSecs(1000)  # 時間增加一秒        time = self.timeClock.toString("hh:mm:ss")        if time == "00:00:00":            self.h24 += 24        h = int(time.split(":")[0]) + self.h24        m = time.split(":")[1]        s = time.split(":")[2]        new_time = "%d:%s:%s" % (h, m, s)        self.label.setText(new_time)  # 標籤顯示時間if __name__ == "__main__":    App = QApplication(sys.argv)    ex = FirstWindow()    ex.show()    sys.exit(App.exec_())

python 計時累積超過24小時時繼續往上累加

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.