• 博客园logo
  • 会员
  • 众包
  • 新闻
  • 博问
  • 闪存
  • 赞助商
  • HarmonyOS
  • Chat2DB
    • 搜索
      所有博客
    • 搜索
      当前博客
  • 写随笔 我的博客 短消息 简洁模式
    用户头像
    我的博客 我的园子 账号设置 会员中心 简洁模式 ... 退出登录
    注册 登录
 






天生自然

 
 

Powered by 博客园
博客园 | 首页 | 新随笔 | 联系 | 订阅 订阅 | 管理

2019年2月5日

吴裕雄 python深度学习与实践(3)
摘要: import threading, time def doWaiting(): print('start waiting:', time.strftime('%S')) time.sleep(3) print('stop waiting', time.strftime('%S')) thread1 = threading.Thread(target = doWaitin... 阅读全文
posted @ 2019-02-05 13:04 吴裕雄 阅读(160) 评论(0) 推荐(0)
 
吴裕雄 python深度学习与实践(2)
摘要: #coding = utf8 import threading,time,random count = 0 class MyThread (threading.Thread): def __init__(self,lock,threadName): super(MyThread,self).__init__(name = threadName) sel... 阅读全文
posted @ 2019-02-05 12:59 吴裕雄 阅读(139) 评论(0) 推荐(0)
 
吴裕雄 python深度学习与实践(1)
摘要: #coding = utf8 import threading,time count = 0 class MyThread(threading.Thread): def __init__(self,threadName): super(MyThread,self).__init__(name = threadName) def run(self): ... 阅读全文
posted @ 2019-02-05 12:43 吴裕雄 阅读(227) 评论(0) 推荐(0)