Home  >  Article  >  Backend Development  >  python对html代码进行escape编码的方法

python对html代码进行escape编码的方法

WBOY
WBOYOriginal
2016-06-06 11:15:182511browse

本文实例讲述了python对html代码进行escape编码的方法。分享给大家供大家参考。具体分析如下:

python包含一个cgi模块,该模块有一个escape函数可以用来对html代码进行编码转换

import cgi
s1 = "Hello <strong>world</strong>"
s2 = cgi.escape(s1)
assert s2 == "Hello <strong>world</strong>"

希望本文所述对大家的Python程序设计有所帮助。

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn