用包含方法修改python字符串
这个问题在这里已经有了答案:
您可以简单地使用in
关键字,如下所示:
if 'Word' in myfile:
print myfile
你可以用find来替换contains,只需检查一个非-1的返回码。
for myfile in filelist:
if myfile.find("Word")!=-1:
print myfile
链接地址: http://www.djcxy.com/p/9387.html