Python18-01_文件----递归算法
2021-03-26 12:27
标签:包括 col int for span mamicode std class pen 递归的基本思想就是--自己调用自己, 利用递归可以用简单的程序解决复杂的问题. 递归结构包括两个部分: Python18-01_文件----递归算法 标签:包括 col int for span mamicode std class pen 原文地址:https://www.cnblogs.com/xujie-0528/p/13694653.html递归算法
1 import os
2 allfiles = []
3 def getAllFiles(path,level):
4 childFiles = os.listdir(path)
5 for file in childFiles:
6 filepath = os.path.join(path,file)
7 if os.path.isdir(filepath):
8 getAllFiles(filepath,level+1)
9 allfiles.append(‘\t‘*level+filepath)
10
11 getAllFiles(‘movi‘,0)
12 for f in reversed(allfiles):
13 print(f)
文章标题:Python18-01_文件----递归算法
文章链接:http://soscw.com/index.php/essay/68144.html