Advertisement
Fhernd

reemplazar-entidades-html.py

Apr 25th, 2018
4,589
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.17 KB | None | 0 0
  1. import html
  2.  
  3. codigo_html = '<strong>Python</strong> es un lenguaje de programación <em>interpretado</em>';
  4.  
  5. print(codigo_html);
  6. print('')
  7. print(html.escape(codigo_html))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement