鱼C论坛

 找回密码
 立即注册
查看: 1581|回复: 1

[已解决]统计当前目录下每个文件类型的文件数,求注释

[复制链接]
发表于 2019-5-2 10:17:23 | 显示全部楼层 |阅读模式

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

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

x
mport os

all_files = os.listdir(os.curdir)
type_dict = dict()

for each_file in all_files:
    if os.path.isdir(each_file):
        type_dict.setdefault('文件夹', 0)
        type_dict['文件夹'] += 1
    else:
        ext = os.path.splitext(each_file)[1]
        type_dict.setdefault(ext, 0)
        type_dict[ext] += 1

for each_type in type_dict.keys():
    print('该文件夹下共有类型为[%s]的文件%d个' % (each_type, type_dict[each_type]
最佳答案
2019-5-2 17:39:40
import os

all_files = os.listdir(os.curdir) #获取路径
type_dict = dict()  #新建类型字典

for each_file in all_files:     #遍历目录文件
    if os.path.isdir(each_file):   #如果是目录执行以下操作
        type_dict.setdefault('文件夹', 0)  #如果键值不存在,写入字典
        type_dict['文件夹'] += 1  #每遍历一个文件夹,值+1
    else:
        ext = os.path.splitext(each_file)[1]  #分割扩展名
        type_dict.setdefault(ext, 0)    #如果键值不存在,写入字典
        type_dict[ext] += 1    #根据键查找,每发现一个值对应+1

for each_type in type_dict.keys():   #遍历字典
    print('该文件夹下共有类型为[%s]的文件%d个' % (each_type, type_dict[each_type]   #输出字典的键值

Python 字典(Dictionary) setdefault()方法
描述
Python 字典 setdefault() 函数和 get()方法 类似, 如果键不存在于字典中,将会添加键并将值设为默认值。
语法
setdefault() 方法语法:
dict.setdefault(key, default=None)
参数
key -- 查找的键值。
default -- 键不存在时,设置的默认键值。
返回值
如果字典中包含有给定键,则返回该键对应的值,否则返回为该键设置的值。
https://www.runoob.com/python/att-dictionary-setdefault.html
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2019-5-2 17:39:40 | 显示全部楼层    本楼为最佳答案   
import os

all_files = os.listdir(os.curdir) #获取路径
type_dict = dict()  #新建类型字典

for each_file in all_files:     #遍历目录文件
    if os.path.isdir(each_file):   #如果是目录执行以下操作
        type_dict.setdefault('文件夹', 0)  #如果键值不存在,写入字典
        type_dict['文件夹'] += 1  #每遍历一个文件夹,值+1
    else:
        ext = os.path.splitext(each_file)[1]  #分割扩展名
        type_dict.setdefault(ext, 0)    #如果键值不存在,写入字典
        type_dict[ext] += 1    #根据键查找,每发现一个值对应+1

for each_type in type_dict.keys():   #遍历字典
    print('该文件夹下共有类型为[%s]的文件%d个' % (each_type, type_dict[each_type]   #输出字典的键值

Python 字典(Dictionary) setdefault()方法
描述
Python 字典 setdefault() 函数和 get()方法 类似, 如果键不存在于字典中,将会添加键并将值设为默认值。
语法
setdefault() 方法语法:
dict.setdefault(key, default=None)
参数
key -- 查找的键值。
default -- 键不存在时,设置的默认键值。
返回值
如果字典中包含有给定键,则返回该键对应的值,否则返回为该键设置的值。
https://www.runoob.com/python/att-dictionary-setdefault.html
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

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

本版积分规则

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

GMT+8, 2025-1-18 13:08

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

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