标签: python html replace
必须在最后一行中用相应的html代码替换字符。
例如:
rules = { '<':'<', '>':'>' }
答案 0 :(得分:3)
从python 3.2开始,html模块的名称为escape function。
例如
>>> import html >>> html.escape("5 > 3") '5 > 3'