使用Python多线程实现极速赛车平台搭建


1,我所使用到的python版本:企 娥:217 1793 408
2,下面编写具体的极速赛车平台搭建实现过程

import threading
import time
import Queue

#首先生成一个队列
q =Queue.Queue()

#生产者
def producer(name):
l=threading.Rlock()
for i in ra开发云主机域名nge(40):
l.acquire()
q.put(i)
l.release()
print “this is thead name is %s ,produce num is %s” %(name,i)
time.sleep(2)

#消费
def consumer(name):
count =0
while count
resulte =q.get()
print ‘the thread name is %s and the consume num is %s’ %(name,result)
time.sleep(4)

#测试
for i in range(10):
p = threading.Thread(target=producer,args=(‘xxxx’,))
p.start()

相关推荐: MySQL 8.0新特性-不可见索引

官方文档: https://dev.mysql.com/doc/refman/8.0/en/invisible-indexes.html MySQL支持不可见索引,即优化器不会使用该索引。 不可见索引特性不可以用于主键。 默认索引是可见的。可以在create …

免责声明:本站发布的图片视频文字,以转载和分享为主,文章观点不代表本站立场,本站不承担相关法律责任;如果涉及侵权请联系邮箱:360163164@qq.com举报,并提供相关证据,经查实将立刻删除涉嫌侵权内容。

Like (0)
Donate 微信扫一扫 微信扫一扫
Previous 06/05 17:25
Next 06/05 17:26

相关推荐