是否有用 html 代码替换字符的库函数? [蟒蛇] [重复]
Posted
技术标签:
【中文标题】是否有用 html 代码替换字符的库函数? [蟒蛇] [重复]【英文标题】:Is there a library function to replace characters with html-code? [python] [duplicate] 【发布时间】:2019-02-28 01:39:57 【问题描述】:需要在完成的行中将字符替换为对应的html-code。
例如:
rules =
'<':'<',
'>':'>'
【问题讨论】:
与其这样做,不如考虑使用一些操作 DOM 并让它对输出进行编码的东西。 【参考方案1】:从 python 3.2 开始,html 模块为 escape function。
例如
>>> import html
>>> html.escape("5 > 3")
'5 > 3'
【讨论】:
以上是关于是否有用 html 代码替换字符的库函数? [蟒蛇] [重复]的主要内容,如果未能解决你的问题,请参考以下文章