pyqt小计
Posted gaoyukun
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了pyqt小计相关的知识,希望对你有一定的参考价值。
1.定时器
1 import threading 2 3 #定义函数 4 5 def fun_timer(): 6 print(‘hello timer‘) #打印输出 7 global timer #定义变量 8 timer = threading.Timer(1,fun_timer) #60秒调用一次函数 9 # #定时器构造函数主要有2个参数,第一个参数为时间,第二个参数为函数名 10 timer.start() #启用定时器 11 timer = threading.Timer(1,fun_timer) #首次启动 12 timer.start()
以上是关于pyqt小计的主要内容,如果未能解决你的问题,请参考以下文章
MVC+EF 随笔小计——分部视图(Partial View)及Html.Partial和Html.Action差异