使用 python 2.7 解码 HTML 字符串

Decode HTML string using python 2.7

我希望使用 HTML 标签对以下 HTML 字符串进行解码

\u003cp\u003e\u003cstrong\u003e\u003cspan\u003eAbout the Company \u003c/span\u003e\u003c/strong\u003e\u003c/p\u003e

我如何在 Python 2.7 中做到这一点?

我有大的 HTML 字符串需要解码。上面的示例只是其中的一部分。

PS:我尝试使用网络上的许多解决方案来解码 HTML 字符串,但没有任何帮助 EDIT: 我已经提到了这个 结果为

\u003cp\u003e\u003cstrong\u003e\u003cspan\u003eAbout the Company \u003c/span\u003e\u003c/strong\u003e\u003c/p\u003e

你可以试试:

>>>text = "\u003cp\u003e\u003cstrong\u003e\u003cspan\u003eAbout the Company \u003c/span\u003e\u003c/strong\u003e\u003c/p\u003e".decode('unicode-escape')
>>>print text
u'<p><strong><span>About the Company </span></strong></p>'