951947697 发表于 2020-9-23 14:03:14

[课后作业] 第030讲:文件系统:介绍一个高大上的东西 |

import os

all_files = os.listdir(os.curdir) # 使用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)
      type_dict.setdefault(ext, 0)
      type_dict += 1

for each_type in type_dict.keys():
    print('该文件夹下共有类型为【%s】的文件 %d 个' % (each_type, type_dict))


请问,ext = os.path.splitext(each_file)中的起到什么作用呢?

fall_bernana 发表于 2020-9-23 14:06:58

获取文件的后缀。比如文件名为1.txt 那么os.path.splitext(each_file) 是 ,os.path.splitext(each_file)就是txt

疾风怪盗 发表于 2020-9-23 14:15:18

用法: os.path.splitext(“文件路径”)    分离文件名与扩展名;默认返回(fname,fextension)元组,可做分片操作
就是取第2个元素,也就是后缀名

951947697 发表于 2020-9-23 19:04:39

好滴!!谢谢了
页: [1]
查看完整版本: [课后作业] 第030讲:文件系统:介绍一个高大上的东西 |