def cut(path):
test = str(foundfiles)
newList = [s for s in test if test.endswith('.UnitTests.vbproj')]
for m in newList:
print m
return newList
这个函数通过foundliles解析,这是我已经解析了大约20多个文件的文件夹中的文件列表。我需要解析每个以“ .UnitTests.vbproj”结尾的文件的列表。但是,我无法使它正常工作。任何建议将不胜感激!
Edit1:这就是我现在编写的代码,并且我收到了错误的错误消息框,提示“ tuple”对象没有属性“ endswith”
def cut(path):
test = foundfiles
newList = [s for s in foundfiles if s.endswith('.UnitTests.vbproj')]
for m in newList:
print m
return newList
慕尼黑8549860
SMILET
相关分类