标签:否则 false 异常 优先 利用 getcwd get class names
walk(top, topdown=True, onerror=None, followlinks=False)
参数:
os.walk 的返回值是一个生成器(generator), 他会不断的遍历所给目录下的所有(子孙)目录(包括它本身)
每次遍历都是返回的是一个三元组(root, dirs, files)
1 import os 2 def tree(top): 3 #path,folder list,file list 4 for path, names, fnames in os.walk(top): 5 for fname in fnames: 6 yield os.path.join(path, fname) 7 8 for name in tree(os.getcwd()): 9 print(name)
标签:否则 false 异常 优先 利用 getcwd get class names
原文地址:http://www.cnblogs.com/tingshuo123/p/6917698.html