python3.5 html字符实体编码/解码
编码:
import cgi
def htmlescape(str):
return(cgi.escape(str))
print(htmlescape("&"))
解码
def htmlunescape(str):
h=HTMLParser()
return(h.unescape(str))
print(htmlunescape("&"))
原文链接:https://blog.csdn.net/qq_32442185/article/details/80801260
本作品采用 知识共享署名-相同方式共享 4.0 国际许可协议 进行许可。