码迷,mamicode.com
首页 > 编程语言 > 详细

python 多线程2-线程的创建启动,退出

时间:2016-03-28 15:35:02      阅读:166      评论:0      收藏:0      [点我收藏+]

标签:

# 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-线程的创建启动,退出

标签:

原文地址:http://www.cnblogs.com/linbinqiang/p/5329031.html

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