本文主要是介绍python 多线程,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
1. 多线程使用
# -*- coding: utf-8 -*-
import threading
import time
import os
def booth(tid):
global num
while True:
lock.acquire() # 锁定
if num != 0:
num = num - 1
print("Thread_id: {} 剩余售票: {}".format(tid, num))
time.sleep(0.5)
else:
print("Thread_id: {} 票已售空".format(tid))
os._exit(0) # 票售完,退出程序
lock.release() # 释放锁
time.sleep(0.5)
num= 15 # 初始化票数
lock = threading.Lock() # 创建锁
if __name__ == '__main__':
# 设置了5个线程
for i in range(5):
t = threading.Thread(target=booth, args=(i,))
t.start()
这篇关于python 多线程的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!