python同时执行两个函数


使用两个线程同时执行两个函数,

def fun1():
    while True:
        time.sleep(2)
        print("fun1")

def fun2():
    while True:
        time.sleep(6)
        print("fun2")

threads = []
threads.append(threading.Thread(target=fun1))
threads.append(threading.Thread(target=fun2))
print(threads)
if __name__ == '__main__':
    for t in threads:
        print(t)
        t.start()
View Code

 


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM