python – Ein Multithreading-Neuling möchte fragen, wie man Multithread-Druck mit einer solchen IP implementieren kann?
PHPz
PHPz 2017-05-27 17:39:49
0
2
881
def hanshu(b):
    print(b)

a="192.168.1.1-3"
for ip in a.split(','):
    if '-' in ip:
        s1, s2 = ip.rsplit('.', 1)
        start, end = map(int, s2.split('-'))
        for num in range(start, end+1):
            b=s1+'.'+str(num)
            hanshu(b)
    else:
        hanshu(ip)
PHPz
PHPz

学习是最好的投资!

Antworte allen(2)
黄舟
https://pypi.python.org/pypi/IPy/

使用这个模块,你的代码不会这么难看,而且
split(",") 写错了

黄舟

多线程要用的threading模块吧,不是很明白你要什么

Neueste Downloads
Mehr>
Web-Effekte
Quellcode der Website
Website-Materialien
Frontend-Vorlage