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

吴裕雄 python深度学习与实践(1)

时间:2019-02-05 13:14:45      阅读:200      评论:0      收藏:0      [点我收藏+]

标签:深度   def   png   run   技术   image   图片   getname   img   

#coding = utf8

import threading,time 

count = 0
class MyThread(threading.Thread):
    def __init__(self,threadName):
        super(MyThread,self).__init__(name = threadName)

    def run(self):
        global count
        for i in range(100):
            count = count + 1
            time.sleep(0.3)
            print(self.getName() , count)

for i in range(2):
    MyThread("MyThreadName:" + str(i)).start()

技术图片

 

吴裕雄 python深度学习与实践(1)

标签:深度   def   png   run   技术   image   图片   getname   img   

原文地址:https://www.cnblogs.com/tszr/p/10352656.html

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