python html转义与反转义
2019-05-20 本文已影响0人
戒灵
from xml.sax.saxutils import escape
from xml.sax.saxutils import quoteattr
print(escape('a=1&b=2'), quoteattr('a=1&b=2'))
html转义字符对照表[http://tool.oschina.net/commons?type=2]
from xml.sax.saxutils import escape
from xml.sax.saxutils import quoteattr
print(escape('a=1&b=2'), quoteattr('a=1&b=2'))
html转义字符对照表[http://tool.oschina.net/commons?type=2]