小编典典

如何删除字符串的左侧部分?

python

我有一些简单的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=


阅读 137

收藏
2021-01-20

共1个答案

小编典典

从开始Python 3.9,您可以使用removeprefix

'Path=helloworld'.removeprefix('Path=')
# 'helloworld'
2021-01-20