就业培训 下载中心 Wiki 联络 登录 注册 首页 Python 3.12.4 索引 模块 下一 上一 Python 标准库 结构化标记处理工具 html.entities — HTML 一般实体的定义 html.entities — HTML 一般实体的定义 ¶ 源代码: Lib/html/entities.py 此模块定义了 4 个字典, html5 , name2codepoint , codepoint2name ,和 entitydefs . html.entities. html5 ¶ A dictionary that maps HTML5 named character references [ 1 ] to the equivalent Unicode character(s), e.g. html5['gt;'] == '>' . Note that the trailing semicolon is included in the name (e.g. 'gt;' ), however some of the names are accepted by the standard even without the semicolon: in this case the name is present with and without the ';' 。另请参阅 html.unescape() . Added in version 3.3. html.entities. entitydefs ¶ A dictionary mapping XHTML 1.0 entity definitions to their replacement text in ISO Latin-1. html.entities. name2codepoint ¶ A dictionary that maps HTML4 entity names to the Unicode code points. html.entities. codepoint2name ¶ A dictionary that maps Unicode code points to HTML4 entity names. 脚注 上一话题 html.parser — 简单 HTML 和 XHTML 剖析器 下一话题 XML 处理模块 本页 报告 Bug 展示源 快速搜索 键入搜索术语或模块、类、函数名称。 首页 Python 3.12.4 索引 模块 下一 上一 Python 标准库 结构化标记处理工具 html.entities — HTML 一般实体的定义
html.entities
源代码: Lib/html/entities.py
此模块定义了 4 个字典, html5 , name2codepoint , codepoint2name ,和 entitydefs .
html5
name2codepoint
codepoint2name
entitydefs
A dictionary that maps HTML5 named character references [ 1 ] to the equivalent Unicode character(s), e.g. html5['gt;'] == '>' . Note that the trailing semicolon is included in the name (e.g. 'gt;' ), however some of the names are accepted by the standard even without the semicolon: in this case the name is present with and without the ';' 。另请参阅 html.unescape() .
html5['gt;'] == '>'
'gt;'
';'
html.unescape()
Added in version 3.3.
A dictionary mapping XHTML 1.0 entity definitions to their replacement text in ISO Latin-1.
A dictionary that maps HTML4 entity names to the Unicode code points.
A dictionary that maps Unicode code points to HTML4 entity names.
脚注
html.parser — 简单 HTML 和 XHTML 剖析器
html.parser
XML 处理模块
键入搜索术语或模块、类、函数名称。