编码:

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