首页 > 编程语言 > 详细

python 线程

时间:2019-01-24 21:37:31      阅读:173      评论:0      收藏:0      [点我收藏+]

 

import time
import threading

def task_thread(counter):
    print(f线程名称:{threading.current_thread().name} 参数:{counter} 开始时间:{time.strftime("%Y-%m-%d %H:%M:%S")})
    num = counter
    while num:
        time.sleep(3)
        num -= 1
    print(f线程名称:{threading.current_thread().name} 参数:{counter} 结束时间:{time.strftime("%Y-%m-%d %H:%M:%S")})


if __name__ == __main__:
    print(f主线程开始时间:{time.strftime("%Y-%m-%d %H:%M:%S")})

    #初始化3个线程,传递不同的参数
    t1 = threading.Thread(target=task_thread, args=(3,))
    t2 = threading.Thread(target=task_thread, args=(2,))
    t3 = threading.Thread(target=task_thread, args=(1,))
    #开启三个线程
    t1.start()
    t2.start()
    t3.start()
    #等待运行结束
    t1.join()
    t2.join()
    t3.join()

    print(f主线程结束时间:{time.strftime("%Y-%m-%d %H:%M:%S")})

 

python 线程

原文:https://www.cnblogs.com/sea-stream/p/10316830.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!