首页 > 其他 > 详细

栈的使用

时间:2019-01-19 10:39:06      阅读:161      评论:0      收藏:0      [点我收藏+]
import os
import collections

#通过栈遍历目录(深度遍历)
def test(path):
stack=[]
stack.append(path)
#处理栈
while len(stack)!=0:
dirpath=stack.pop()
filelist=os.listdir(dirpath)
for filename in filelist:
fileAbsPath=os.path.join(dirpath,filename)
if os.path.isdir(fileAbsPath):
stack.append(fileAbsPath)
else:
print("文件:"+filename)

path=r"C:\Users\HP\Desktop\python基础知识"
test1(path)

栈的使用

原文:https://www.cnblogs.com/wfw001-2018/p/10290479.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!