Con la ayuda del html.unescape()
método, podemos convertir la string ascii en un script html reemplazando los caracteres ascii con caracteres especiales usando el html.escape()
método.
Sintaxis:
html.unescape(String)
Devolver: Devuelve un script html.
Ejemplo n.º 1:
en este ejemplo, podemos ver que al usar el html.unescape()
método, podemos convertir la string ascii en un script html al usar este método.
# 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)
Producción :
esto es python
Ejemplo #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)
Producción :
GeeksParaGeeks
Publicación traducida automáticamente
Artículo escrito por GeeksforGeeks-1 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA