鱼C论坛

 找回密码
 立即注册
查看: 2192|回复: 2

第30讲 第4题 第40行代码有些不懂

[复制链接]
发表于 2016-9-24 15:53:06 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
本帖最后由 linlinlin 于 2016-9-26 08:44 编辑



def search_files(key, detail):   
    all_files = os.walk(os.getcwd())
    txt_files = []

    for i in all_files:
        for each_file in i[2]:
            if os.path.splitext(each_file)[1] == '.txt': # 根据后缀判断是否文本文件
                each_file = os.path.join(i[0], each_file)
                txt_files.append(each_file)

这里,for each_file in i[2],不太清楚i[2]这句话表示什么意思,i是一个文件夹,那么i[2]和i[0]分别表示什么呢?

请指教!
小甲鱼最新课程 -> https://ilovefishc.com
回复

使用道具 举报

发表于 2016-9-24 21:29:32 | 显示全部楼层
见小甲鱼的帖子:http://bbs.fishc.com/forum.php?m ... peid%26typeid%3D403

walk(top) 遍历top路径以下所有的子目录,返回一个三元组:(路径, [包含目录], [包含文件])

以我的计算机为例,其中的第一个i值是
('D:\\python35', ['DLLs', 'Doc', 'include', 'Lib', 'libs', 'Scripts', 'share', 'tcl', 'Tools', '__pycache__'], ['1.txt', '2.txt', 'hello.py', 'LICENSE.txt', 'LICENSE1', 'NEWS.txt', 'pp-wininst.log', 'python.exe', 'python.pdb', 'python3.dll', 'python35.dll', 'python35.pdb', 'python35_d.dll', 'python35_d.pdb', 'python3_d.dll', 'pythonw.exe', 'pythonw.pdb', 'pythonw_d.exe', 'pythonw_d.pdb', 'python_d.exe', 'python_d.pdb', 'README.txt', 'Removepp.exe', 't.png', 'vcruntime140.dll'])
i[0] = 'D:\\python35
i[1] =  ['DLLs', 'Doc', 'include', 'Lib', 'libs', 'Scripts', 'share', 'tcl', 'Tools', '__pycache__']
i[2] = ['1.txt', '2.txt', 'hello.py', 'LICENSE.txt', 'LICENSE1', 'NEWS.txt', 'pp-wininst.log', 'python.exe', 'python.pdb', 'python3.dll', 'python35.dll', 'python35.pdb', 'python35_d.dll', 'python35_d.pdb', 'python3_d.dll', 'pythonw.exe', 'pythonw.pdb', 'pythonw_d.exe', 'pythonw_d.pdb', 'python_d.exe', 'python_d.pdb', 'README.txt', 'Removepp.exe', 't.png', 'vcruntime140.dll']
小甲鱼最新课程 -> https://ilovefishc.com
回复 支持 反对

使用道具 举报

 楼主| 发表于 2016-9-26 08:43:49 | 显示全部楼层
冬雪雪冬 发表于 2016-9-24 21:29
见小甲鱼的帖子:http://bbs.fishc.com/forum.php?mod=viewthread&tid=45512&extra=page%3D1%26filter%3Dty ...

感谢!完全明白了!!
小甲鱼最新课程 -> https://ilovefishc.com
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2026-2-23 00:09

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表