나는 문자열 등을 검색 파일이 몇 가지 간단한 파이썬 코드가 path=c:\path
의 c:\path
일부가 다를 수 있습니다. 현재 코드는 다음과 같습니다
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=" ?
텍스트를 얻는 간단한 방법은 무엇입니까 Path=
?