摘要: import glob import re for txtFile in glob.glob('./txt/*.txt',recursive=False): #遍历文件夹里的txt文件,不递归子文件夹 file=open(txtFile,'r') content=file.read() matche 阅读全文
posted @ 2024-12-06 11:33 夕西行 阅读(2) 评论(0) 推荐(0) 编辑