with open("%sindex.html" % (dir), "wb") as code:
html = html.replace('师师', '研')
html = html.replace('师师', '学')
print html
今天遇到一个很蠢的问题,替换不了目标文件中的字符串:
结果原因是没有赋值!
注意:
Replace这个函数并不直接操作传入的字符串
而是返回一个字符串
你得把返回的字符串赋值给某个字符串啊,不要直接丢弃
with open("%sindex.html" % (dir), "wb") as code:
html = html.replace('师师', '研')
html = html.replace('师师', '学')
print html
今天遇到一个很蠢的问题,替换不了目标文件中的字符串:
结果原因是没有赋值!
注意:
Replace这个函数并不直接操作传入的字符串
而是返回一个字符串
你得把返回的字符串赋值给某个字符串啊,不要直接丢弃