Eu tenho algum código python simples que pesquisa arquivos por uma string path=c:\path
, por exemplo , onde a c:\path
parte pode variar. O código atual é:
def find_path(i_file):
lines = open(i_file).readlines()
for line in lines:
if line.startswith("Path="):
return # what to do here in order to get line content after "Path=" ?
Qual é uma maneira simples de obter o texto depois Path=
?