Open In App

html.escape() in Python

Last Updated : 22 Apr, 2020
Comments
Improve
Suggest changes
Like Article
Like
Report
With the help of html.escape() method, we can convert the html script into a string by replacing special characters with the string with ascii characters by using html.escape() method.
Syntax : html.escape(String) Return : Return a string of ascii character script from html.
Example #1 : In this example we can see that by using html.escape() method, we are able to convert the html script to ascii string by using this method. Python3 1=1
# 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)
Output :
<html><head></head><body><h1>This is python</h1></body></html>
Example #2 : Python3 1=1
# import html
import html

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

print(gfg)
Output :
<html><head></head><body><h1>GeeksForGeeks</h1></body></html>

Next Article
Article Tags :
Practice Tags :

Similar Reads