Код: Выделить всё
if 'string1' in line: ...
Код: Выделить всё
if 'string1' or 'string2' or 'string3' in line: ...
Подробнее здесь: https://stackoverflow.com/questions/230 ... tor-python
Код: Выделить всё
if 'string1' in line: ...
Код: Выделить всё
if 'string1' or 'string2' or 'string3' in line: ...