python 多线程2-线程的创建启动,退出
Posted Adam_LBQ
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 多线程2-线程的创建启动,退出相关的知识,希望对你有一定的参考价值。
# encoding: UTF-8 import threading import time class MyThread(threading.Thread): def run(self): for i in range(3): time.sleep(1) msg = "I‘m "+self.name+‘ @ ‘+str(i) print msg def test(): for i in range(5): t = MyThread() t.start() if __name__ == ‘__main__‘: test()
以上是关于python 多线程2-线程的创建启动,退出的主要内容,如果未能解决你的问题,请参考以下文章