借助html.unescape()
方法,我们可以使用以下方式将ascii字符替换为特殊字符,从而将ascii字符串转换为html脚本:html.escape()
方法。
用法:html.unescape(String)
返回:Return a html script.
范例1:
在这个例子中,我们可以通过使用html.unescape()
方法,我们可以使用此方法将ascii字符串转换为html脚本。
# import html
import html
s = '<html><head></head><body><h1>This is python</h1></body></html>'
temp = html.escape(s)
# Using html.unescape() method
gfg = html.unescape(temp)
print(gfg)
输出:
This is python
范例2:
# import html
import html
s = '<html><head></head><body><h1>GeeksForGeeks</h1></body></html>'
temp = html.escape(s)
# Using html.unescape() method
gfg = html.unescape(temp)
print(gfg)
输出:
GeeksForGeeks
相关用法
注:本文由纯净天空筛选整理自Jitender_1998大神的英文原创作品 html.unescape() in python。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。