码迷,mamicode.com
首页 > 其他好文 > 详细

pyqt小计

时间:2019-02-23 18:23:40      阅读:195      评论:0      收藏:0      [点我收藏+]

标签:close   int   art   定义变量   hid   color   构造   def   lob   

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()
View Code

 

pyqt小计

标签:close   int   art   定义变量   hid   color   构造   def   lob   

原文地址:https://www.cnblogs.com/gaoyukun/p/10423611.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!