我有一个字符串列表,如果列表中的字符串出现在文件名中,那么我希望 python 打开文件。问题是,我希望 python 按照字符串出现在列表中的顺序打开文件。我当前的代码按照 python 想要的顺序打开文件,并且只检查列表中的字符串是否出现在文件名中。
文件
dogs.html
cats.html
fish.html
Python
list = ['fi', 'do', 'ca']
for name in glob.glob('*.html'):
for item in list:
if item in name:
with open(name) as k: