我正在尝试创建一个类似秒表的 gui 应用程序(wxpython)。我有按钮:开始、停止、重置和显示 00:00.0(mm:ss:tt、分钟、秒、十分之一秒)的帧。但是,我很难尝试使用整数获得正确的输出。我想要这个输出,例如:
...
...
...
TICK = 0
t_format = u"%02d:%02d.%02d" % (min, sec, t_sec)
...t_format(0) -> 0:00.0
...t_format(12) -> 0.01.2
...t_format(321) -> 0:32.1
...
...
...
while (self.stop != True) or (self.reset != True):
t_format(TICK)
TICK += 1
...
...
...