当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python html.unescape()用法及代码示例


借助html.unescape()方法,我们可以使用以下方式将ascii字符替换为特殊字符,从而将ascii字符串转换为html脚本:html.escape()方法。

用法: html.unescape(String)

返回:返回一个html脚本。



范例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




相关用法


注:本文由纯净天空筛选整理自 html.unescape() in Python。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。