Добрый день, есть файл в котором результат пинга 3 ip вот пример одного:
ping 10.152.62.5
Type escape sequence to abort. Sending 5, 100-byte ICMP Echos to 10.152.62.5, timeout is 2 seconds:
!!!!!
Success rate is 100 percent (5/5), round-trip min/avg/max = 8/8/9 ms
мне из него нужно достать
Sending 5, 100-byte ICMP Echos to 10.152.62.5, timeout is 2 seconds:
!!!!!
Сейчас это делается так:
f = open("log3.log")
l = f.readlines()
a0 = ".1,"
a1 = ".2,"
a2 = ".5,"
with io.open('log3.log') as file:
for line in file:
if a0 in line:
print( line, end='')
with io.open('log3.log') as file:
for line in file:
if a1 in line:
print( line, end='')
with io.open('log3.log') as file:
for line in file:
if a2 in line:
print( line, end='')
То есть я ищу строки по таким параметрам ".1," ".2," ".5,", но "!!!!!" всегда повторяется. Как мне добавить к найденной строке еще одну идущую следом за ней ниже?