python 使用多线程同时执行多个函数


import threading
import time

def test1():
    print(1+5)

def test2():
    print(5+8)

def test3():
    print(5 + 8)
def test4():
    print(5 + 8)
def test5():
    print(5 + 8)

if __name__=='__main__':
    threads=[threading.Thread(target=test1),
             threading.Thread(target=test2),
             threading.Thread(target=test3),
             threading.Thread(target=test4),
             threading.Thread(target=test5)]
    for i in threads:
        i.start()
        print(time.time())

运行结果:
6
1612968412.95072
13
1612968412.95072
13
1612968412.95072
13
1612968412.95072
13
1612968412.95072

  


免责声明!

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



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