也许有更好的方法,但是如何:
import globtypes = ('*.pdf', '*.cpp') # the tuple of file typesfiles_grabbed = []for files in types: files_grabbed.extend(glob.glob(files))# files_grabbed is the list of pdf and cpp files也许还有另一种方式,所以请耐心等待别人提出更好的答案。

也许有更好的方法,但是如何:
import globtypes = ('*.pdf', '*.cpp') # the tuple of file typesfiles_grabbed = []for files in types: files_grabbed.extend(glob.glob(files))# files_grabbed is the list of pdf and cpp files也许还有另一种方式,所以请耐心等待别人提出更好的答案。