20.1. html — 超文本标记语言支持

源码: Lib/html/__init__.py


该模块定义了操作HTML的工具。

html.escape(s, quote=True)

将字符串 s 中的字符``&`` 、 <> 转换为安全的HTML序列。 如果需要在 HTML 中显示可能包含此类字符的文本,请使用此选项。 如果可选的标志 quote 为真值,则字符 (") 和 (') 也被转换;这有助于包含在由引号分隔的 HTML 属性中,如 <a href="...">

3.2 新版功能.

html.unescape(s)

Convert all named and numeric character references (e.g. &gt;, &#62;, &x3e;) in the string s to the corresponding unicode characters. This function uses the rules defined by the HTML 5 standard for both valid and invalid character references, and the list of HTML 5 named character references.

3.4 新版功能.


html 包中的子模块是: