Python3 多线程
摘要:
#!/usr/bin/python3 import _thread import time # 为线程定义一个函数 def print_time( threadName, delay): count = 0 while count < 5: time.sleep(delay) count += 1 阅读全文
posted @ 2019-12-08 19:13 gisai 阅读(283) 评论(0) 推荐(0) 编辑