摘要: # -*- coding:utf-8 -*- import multiprocessing import time def worker(interave): n=5 while n>0: print ('现在时间是{0}'.format(time.ctime())) time.sleep(interave) n-=1 if _... 阅读全文
posted @ 2017-02-11 12:59 200六 阅读(128) 评论(0) 推荐(0) 编辑