python 多线程之thread

转自:https://www.weidianyuedu.com/

ython 多线程之thread

#! /usr/bin/env python

-- coding:utf-8 --

from threading import Thread
import subprocess
from Queue import Queue
num_threads = 3
ips = [‘10.108.100.174’, ‘119.75.218.77’, ‘127.0.0.1’]
q = Queue()
def pingit(i, queue):
while True:
ip = queue.get()
print “thread %s is pinging %s” % (i, ip)
ret = subprocess.call(‘ping -c 3 %s’ % ip, shell=True, stdout=open(‘/dev/null’,‘w’))#正常则返回0,异常则返回1;stdout=open(‘/dev/null’,‘w’)屏蔽ping具体细节信息
if ret != 0:
print “%s is down” % ip
queue.task_done()
for i in xrange(num_threads):#xrang比range好
t = Thread(target=pingit, args=(i, q))
t.setDaemon(True)#设置了setDaemon则线程会随着主线程关闭而关闭,python中,主线程结束后,会默认等待子线程结束后,主线程才退出
t.start()
for ip in ips:
q.put(ip)
print “main thread is waiting…”
q.join()
print “Done…”

https://www.weidianyuedu.com/

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值