帮我写一段Python程序爬取文件夹中所有文件中内容为“得分:”后的两个字符 点击复制后,将打开ChatGPT体验页
时间: 2023-03-09 09:05:49 浏览: 112
15分钟用Python开发一个ChatGPT插件.zip
我可以为你编写一段Python代码,用来爬取文件夹中所有文件中内容为“得分:”后的两个字符:import osfor root, dirs, files in os.walk("./folder_name"):
for file in files:
with open(os.path.join(root, file)) as f:
for line in f:
if "得分:" in line:
score = line.split("得分:")[1][0:2]
print(score)
阅读全文