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


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


借助html.escape()方法,我们可以通过以下方式将html脚本转换为字符串:使用html.escape()方法。

用法: html.escape(String)

返回:从html返回一个ascii字符脚本字符串。



范例1:
在这个例子中,我们可以通过使用html.escape()方法,我们可以使用此方法将html脚本转换为ascii字符串。

# import html 
import html 
  
s = '<html><head></head><body><h1>This is python</h1></body></html>'
# Using html.escape() method 
gfg = html.escape(s) 
  
print(gfg)

输出:

<html><head></head><body><h1>This is python</h1></body></html>

范例2:

# import html 
import html 
  
s = '<html><head></head><body><h1>GeeksForGeeks</h1></body></html>'
# Using html.escape() method 
gfg = html.escape(s) 
  
print(gfg)

输出:

<html><head></head><body><h1>GeeksForGeeks</h1></body></html>




相关用法


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