python怎么判断文档是否有指定后缀?

python判断文档是否有指定后缀的方法:

import os
 
Your_Dir='你的文件夹/'
Files=os.listdir(Your_Dir)
for k in range(len(Files)):
    # 提取文件夹内所有文件的后缀
    Files[k]=os.path.splitext(Files[k])[1]
 
Str2=['.wav','.mp3','.mp4']
if len(list(set(Str2).intersection(set(Files))))==len(Str2):
    return True
else:
    return False

os.path.splitext(path):分割路径,返回路径名和文件扩展名的元组。

更多Python知识请关注云海天python教程网

来源:PY学习网:原文地址:https://www.py.cn/article.html

hmoban主题是根据ripro二开的主题,极致后台体验,无插件,集成会员系统
自学咖网 » python怎么判断文档是否有指定后缀?