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()

猜你喜欢

转载自www.cnblogs.com/themost/p/9266419.html