import os
mypath = "labels/"
for i in os.walk('mypath'+os.sep+'001'):
print i
返回一个三元tupple(dirpath, dirnames, filenames)
dirpath,type:string,代表目录的路径,为起始路径
dirnames,type:list,包含了dirpath下所有子目录的名字
filenames,type:list,包含了非目录文件的名字,这些名字不包含路径信息。如需得到全路径,使用 os.path.join(dirpath, name)。