码迷,mamicode.com
首页 > 编程语言 > 详细

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

时间:2021-02-15 12:03:29      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:线程   reading   thread   pre   name   ==   time()   多线程   test   

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

  

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

标签:线程   reading   thread   pre   name   ==   time()   多线程   test   

原文地址:https://www.cnblogs.com/xianhaiyan/p/14396912.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!