用python处理html代码的转义

RocNg 2020-05-11

针对python3+进行转义

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

相关推荐