私はいくつかの簡単なPythonコードの文字列などを検索ファイルその持って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=
ですか?