Ho un semplice codice Python che cerca i file per una stringa path=c:\path
, ad esempio , dove la c:\path
parte può variare. Il codice attuale è:
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 è un modo semplice per ottenere il testo dopo Path=
?