鱼C论坛

 找回密码
 立即注册
查看: 1396|回复: 2

帮我看看count_true计数不正常

[复制链接]
发表于 2020-10-10 16:10:43 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
本帖最后由 jitianmoshen 于 2020-11-22 09:57 编辑

谁帮我看看怎么改,谢谢
def ping_IP(IP_QUEUE):
    count_true = 0
    while not IP_QUEUE.empty():
        ip = IP_QUEUE.get().strip('\n')
        # print (ip)
        res = subprocess.call(f"ping -w 1000 -n 1 {ip}", stdout=subprocess.PIPE, shell=True)
        # print (res)
        today = datetime.datetime.now().strftime("%Y年%m月%d日%H:%M:%S")
        if res == 0:
            count_true += 1
            h = subprocess.getoutput(f"Ping {ip}")
            # print (h)
            if 'TTL=' in h:
                if "Average" in h:
                    res = f"网络可以正常连通,平均延时 = {h.split('Average = ')[1]}"
                    logging.info(f"{today} IP =  {ip} {res}")
                elif "平均" in h:
                    res = f"网络可以正常连通,平均延时 = {h.split('平均 = ')[1]}"
                    logging.info(f"{today} IP =  {ip} {res}")
                else:
                    res = f"网络可以正常连通."
                    logging.info(f"{today} IP =  {ip} {res}")
        #else:
            #res = '网络连接失败!\n'
            #print(res)
    print(count_true)
    logging.info(f"一共ping通 {count_true} 个ip.")
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

 楼主| 发表于 2020-10-10 16:19:22 | 显示全部楼层
本帖最后由 jitianmoshen 于 2020-10-10 16:21 编辑

QQ截图20201010161814.jpg 像这样
应该是多线程弄的
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

 楼主| 发表于 2020-10-10 16:23:13 | 显示全部楼层
我改下计数方式吧
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2025-1-18 10:00

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表