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

python 线程

时间:2019-01-24 21:57:17      阅读:245      评论:0      收藏:0      [点我收藏+]

标签:counter   import   code   ==   join   read   结束   python   初始化   

 

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 线程

标签:counter   import   code   ==   join   read   结束   python   初始化   

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

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