python 过滤出某后缀名文件
摘要:
以从某文件夹过滤出py文件为例:法1:import glob import osos.chdir(“./”)for file in glob.glob(“*.py”): print file法2:for file in os.listdir(“./”): if file.endswith... 阅读全文
posted @ 2015-11-29 16:14 张祎 阅读(6407) 评论(0) 推荐(0) 编辑