Skip to content

Instantly share code, notes, and snippets.

@Fhernd
Created April 25, 2018 12:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Fhernd/f66f3f7d314e8f2a0d6fb1f68ba5a06f to your computer and use it in GitHub Desktop.
Save Fhernd/f66f3f7d314e8f2a0d6fb1f68ba5a06f to your computer and use it in GitHub Desktop.
Reemplazar entidades HTML. OrtizOL.
import html
codigo_html = '<strong>Python</strong> es un lenguaje de programación <em>interpretado</em>';
print(codigo_html);
print('')
print(html.escape(codigo_html))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment