帮我写一段Python程序爬取文件夹中所有文件中内容为“得分:”后的两个字符 点击复制后,将打开ChatGPT体验页
时间: 2023-03-09 18:05:49 浏览: 117
我可以为你编写一段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)
相关问题
帮我写一段Python程序爬取word文件中内容为“得分:”后的两个字符
答:示例代码:with open('word文件名.txt', 'r') as f:
for line in f:
if '得分:' in line:
score = line[line.find('得分:')+3:line.find('得分:')+5]
print(score)
帮我写一段Python程序爬取word文档中内容为“得分”后的3个字符
答:
import re
with open('word文档.txt', 'r') as f:
content = f.read()
m = re.search('得分(.{3})', content)
if m:
print(m.group(1))
阅读全文