我正在编写一个 python 代码来从 .txt 中删除所有信息。我已经写了一个代码,但总是出现错误: 'NoneType' 对象没有属性'groupdict'
代码:
import re
readfile = open("test.txt")
try:
all_the_text =readfile.read()
m = re.match("(pdflink=[\w\s/]*)author=([\w\s/]*/n)",unicode(all_the_text),flags=re.UNICODE)
m.groupdict()
print m.groupdict()
finally:
readfile.close()
writefile = open('test5.txt','w')
print >> writefile, m.groupdict()
writefile.close()
请帮帮我!谢谢!