用途HTMLParser.HTMLParser():>>> from HTMLParser import HTMLParser>>> h = HTMLParser()>>> s = "מפגשי">>> print h.unescape(s)מפגשי它也是标准库的一部分。但是,如果您使用的是Python 3,则必须从导入html.parser:>>> from html.parser import HTMLParser>>> h = HTMLParser()>>> s = 'מפגשי'>>> print(h.unescape(s))מפגשי