我正在制作所有路径的元组,但它还包含两个额外的路径
/Users/sanjeevkumar/Pictures/.DS_Store
/Users/sanjeevkumar/Pictures/.localized
我如何摆脱上述路径,我正在使用以下技术生成元组路径
tuple(os.path.join(self._path,each) for each in os.listdir(self._path) if os.path.isfile(os.path.join(self._path,each)))