如下所示:
python" id="highlighter_917260">
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
# -*- coding: utf-8 -*-
import numpy as np
from pyqt5.qtcore import qtimer, qobject
from pyqt5.qtwidgets import qwidget, qapplication
import sys
import time
class my_timer(qwidget):
def __init__( self ):
super (my_timer, self ).__init__()
self .my_t = qtimer( self )
# self.my_t.setinterval(1000)
self .my_t.start( 1000 )
self .my_t.timeout.connect( self .my_function)
def my_function( self ):
for i in range ( 10 ):
print ( '_(%s)' % str (i))
time.sleep( 0.5 )
if __name__ = = '__main__' :
app = qapplication(sys.argv)
w = my_timer()
w.show()
sys.exit(app.exec_())
|
当你发现你用qtimer的时候没有效果时,请把qtimer赋予到界面里面吧,当你把qtimer写入界面的时候,就会发现qtimer能用了。
以上这篇python之当你发现qtimer不能用时的解决方法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持服务器之家。
原文链接:https://blog.csdn.net/shangxiaqiusuo1/article/details/82779682