摘要: self.checkBox_drank.stateChanged.connect(self.checkBox_drank_choose) def checkBox_drank_choose(self): if self.checkBox_drank.isChecked(): with open("c 阅读全文
posted @ 2020-08-16 14:21 xdd1997 阅读(342) 评论(0) 推荐(0) 编辑
摘要: def num2HourMinSec(num): m, s = divmod(num, 60) h, m = divmod(m, 60) timestr = "%02d:%02d:%02d" % (h, m, s) return timestr import time for i in range( 阅读全文
posted @ 2020-08-16 13:44 xdd1997 阅读(783) 评论(0) 推荐(0) 编辑