码迷,mamicode.com
首页 > 编程语言 > 详细

Python获取两个ip之间的所有ip

时间:2014-07-06 21:21:30      阅读:281      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   for   python   div   

int_ip = lambda x: ..join([str(x/(256**i)%256) for i in range(3,-1,-1)])
ip_int = lambda x:sum([256**j*int(i) for j,i in enumerate(x.split(.)[::-1])])
def get_ips(ip1,ip2):
    f=open(ips.txt,w)
    ip1_num = ip_int(ip1)
    ip2_num = ip_int(ip2)
    for i in range(ip1_num,ip2_num+1):
        f.write(str(int_ip(i))+\n)
get_ips(192.168.0.0,192.168.255.255)

 

Python获取两个ip之间的所有ip,布布扣,bubuko.com

Python获取两个ip之间的所有ip

标签:style   blog   color   for   python   div   

原文地址:http://www.cnblogs.com/Xjng/p/3824666.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!