摘要: 什么是线程? 开启线程的两种方式 方式一: 1 import time 2 import random 3 from threading import Thread 4 5 6 def eat(name): 7 print('{} is eating'.format(name)) 8 time.sl 阅读全文
posted @ 2020-11-13 10:53 蟹老板bb 阅读(109) 评论(0) 推荐(0) 编辑