在python中读取文件中多串的字符串

时间:2017-05-01 15:42:49

标签: python

我正在尝试从我的文件中查找多次出现的字符索引。我的代码如下;

m_Result.SetWindowTextW(Result);

为什么我收到以下错误;

with open(completeName, 'r') as myfile:
        data=myfile.read()
        for m in re.finditer('K', data):
            result = m.start()
            #print result and do something more

任何帮助将不胜感激。感谢。

1 个答案:

答案 0 :(得分:0)

您需要先导入您的包:import re

请参阅documentation