用python处理html代码的转义

针对python3+进行转义

import html
r = html.unescape(‘Suzy & John‘)
print(r)#结果:Suzy & John

相关推荐