概述
以从某文件夹过滤出py文件为例:
法1:
import glob
import os
os.chdir(“./”)
for file in glob.glob(“*.py”):
print file
法2:
for file in os.listdir(“./”):
if file.endswith(“.py”):
print file
法3:
for root, dirs, files in os.walk(“./”):
for file in files:
if file.endswith(“.py”):
print os.path.join(root, file)
方法非原创,文责不负。嘿嘿
标签:
python
最后
以上就是执着黄蜂为你收集整理的python 过滤出某后缀名文件的全部内容,希望文章能够帮你解决python 过滤出某后缀名文件所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复