猿问

用python ,怎么实现无限循环(非死循环)?

我想得到如下结构

初始化一次 x=0 ,

然后无限循环 x+=1 print x 得到 1 ,2 ,3 ,4 ,5,6........
我希望得到在循环同时,我的电脑能进行其它操作,,
(像while,但是while无限循环会卡死,所以不可取)
慕后森
浏览 650回答 3
3回答

料青山看我应如是

import threading##多线程def a:while True:print("hello")def b:print("xxxx")threads=[]t1=threading.Thread(target=self.a())threads.append(t1)t2=threading.Thread(target=self.b())threads.append(t2)for t in threads:t.setDaemon(True)t.start

精慕HU

1234while 1==1:    print 'Hello'#这里执行不到print 'xxxxxxx' 
随时随地看视频慕课网APP

相关分类

Python
我要回答