摘要: 一、多线程 1、线程的两种调用方式: ###### 并发 ###### import threading import time def sayhi(num): #定义每个线程要运行的函数 print("running on number:%s" %num) time.sleep(3) if __n 阅读全文
posted @ 2018-08-19 00:15 Eric_nan 阅读(106) 评论(0) 推荐(0)