python 多线程threading

#coding=utf-8

#python 多线程

#原函数
def execute_slowly(a, b, c):
    pass


#多线程
from threading import Thread
t = Thread(target=execute_slowly, args=(a, b, c))
t.start()

 

posted @ 2018-07-05 08:43  道高一尺  阅读(148)  评论(0编辑  收藏  举报