我正在尝试在 using 中做一个时间计数器,并在usingpython
中QTime
显示这个时间。我需要这样做,以显示自从我的程序开始工作以来已经过去了多少时间,使用这种时间格式:. 我阅读了文档并尝试了我在互联网上搜索过的另一个代码,但我无法让它工作。QLabel
PyQt
00:00:00
QTime
这是我的代码的一部分:
class MyApplication(QtGui.QApplication):
def __init__(self, *args, **kwargs):
super(MyApplication, self).__init__(*args, **kwargs)
self.t = QTime() #I start QTime at the same time
self.t.start() # the program starts.
self.label_1 = QtGui.QLabel("Time since the program started:")
self.time_label = QtGui.QLabel("00:00:00")
self.tmr = QTimer() #I use QTimer because I need it
#for another part of the code
self.tmr.timeout.connect(self.clock)
def clock(self):
self.m = 0
self.elapsed = self.t.elapsed()
self.s = int((self.elapsed)/1000)
if self.s == 60:
self.m += 1
self.s = 0
self.time_sec = str(self.s)
self.time_min = str(self.m)
self.time = self.time_min + ":" + self.time_sec
self.time_label.setText(self.time) #I show the time in this QLabel()
当我构建它时,我得到了这种格式的时间:0:0
并且在 60 秒后(它显示了秒数)我得到了这个结果:1:0
,没有其他任何事情发生。
我怎样才能用这种格式制作我需要的计时器:00:00:00
. 我可以使用它QTimer
吗?希望您能够帮助我。
- - - 编辑 - - -
感谢@amicitas 和@linusg 的回答,我尝试了这个datetime
模块,并编写了这个简单的代码:
class MyApplication(QtGui.QApplication):
def __init__(self, *args, **kwargs):
super(MyApplication, self).__init__(*args, **kwargs)
self.t0 = datetime.now()
self.tmr = QTimer()
self.tmr.timeout.connect(self.clock)
def.clock(self):
self.t1 = datetime.now()
self.hour = self.t1.hour - self.t0.hour
self.minute = self.t1.minute - self.t0.minute
self.second = self.t1.second - self.t0.second
print self.hour, self.minute, self.second
但是,当我构建它时,当计数器达到 45 秒时,它会从 45 变为 -15,并出现“1 分钟”。这是:
当它到达时0:0:44
,它转向0:1:-15
。
可能是什么问题呢?以及如何显示我需要的时间格式?这是00:00:00
. 希望您能够帮助我。