1. ホーム
  2. python

[解決済み] 文字列の左側部分を削除するには?

2022-04-25 01:51:14

質問

私はいくつかの簡単な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= ?

解決方法は?

で開始します。 Python 3.9 を使用することができます。 removeprefix :

'Path=helloworld'.removeprefix('Path=')
# 'helloworld'