python集合输出_Python封装:实现输出一个文件夹下所有各个文件的地址存为列表集合内——Jason niu...
def getAllImages(folder):assert os.path.exists(folder)assert os.path.isdir(folder)imageList = os.listdir(folder)imageList = [os.path.abspath(item) for item in imageList if os.path.isfile(os.path.join(...