数字IP 与 ip地址转换
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了数字IP 与 ip地址转换相关的知识,希望对你有一定的参考价值。
#!/usr/bin/env python
import string
def ch1(num):
s = []
for i in range(4):
s.append(str(num %256))
num /= 256
return ‘.‘.join(s[::-1])
file_object = open(‘gslb.v101‘)
for line in file_object:
ip_list = line.split(‘ ‘)
print ch1(int(ip_list[0])),‘--->‘,ch1(int(ip_list[1]))
file_object.close( )
3549401088 3549421567
3549749248 3549757439
3671023616 3671056383
3719389184 3719391231
3729636096 3729636351
本文出自 “开发与运维” 博客,谢绝转载!
以上是关于数字IP 与 ip地址转换的主要内容,如果未能解决你的问题,请参考以下文章