Я изменил некоторые журналы печати для отладки потока кода следующим образом: -
def ipRange(start_ip, end_ip):
start = list(map(int, start_ip.split(".")))
end = list(map(int, end_ip.split(".")))
print('start', start)
print('end', end)
temp = start
ip_range = []
ip_range.append(start_ip)
print('IP ADDRESS IS', ip_range)
while temp != end:
print('while ')
start[3] += 1
for i in (3, 2, 1):
if temp[i] == 256:
temp[i] = 0
temp[i-1] += 1
ip_range.append(".".join(map(str, temp)))
print('IP ADDRESS IS', ip_range)
return ip_range
print("Executing the python script")
output = []
# sample usage
ip_range = ipRange("0.0.0.0", "0.0.0.10")
for ip in ip_range:
print(ip)
output.append(ip)
fo = open("output.txt", "w+")
line = fo.writelines(output)
fo.close()
Пожалуйста, найдите следующий вывод (у меня есть только 10 IP-адресов): -
[nikhilesh@pgadmin ~]$ python 2.py
starting the python
('start', [0, 0, 0, 0])
('end', [0, 0, 0, 10])
('IP ADDRESS IS', ['0.0.0.0'])
while
while
while
while
while
while
while
while
while
while
('IP ADDRESS IS', ['0.0.0.0', '0.0.0.1', '0.0.0.2', '0.0.0.3', '0.0.0.4', '0.0.0.5', '0.0.0.6', '0.0.0.7', '0.0.0.8', '0.0.0.9', '0.0.0.10'])
0.0.0.0
0.0.0.1
0.0.0.2
0.0.0.3
0.0.0.4
0.0.0.5
0.0.0.6
0.0.0.7
0.0.0.8
0.0.0.9
0.0.0.10
[nikhilesh@pgadmin ~]$ cat output.txt
0.0.0.00.0.0.10.0.0.20.0.0.30.0.0.40.0.0.50.0.0.60.0.0.70.0.0.80.0.0.90.0.0.10
Я использую Python версии 2.7.5