Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created August 8, 2019 01:28
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 parzibyte/5fc68a7f7fabeb2fbce0f61d715b8169 to your computer and use it in GitHub Desktop.
Save parzibyte/5fc68a7f7fabeb2fbce0f61d715b8169 to your computer and use it in GitHub Desktop.
print ("Content-type:text/html\n\n")
print ('<html>')
print ('<head>')
print ('<title>Servidor HTTP simple en Python 3</title>')
print ('</head>')
print ('<body>')
print ('<h2>Hola mundo. ¿Saben cuánto es 5 +5?</h2>')
print ('<h2>Es {}</h2>'.format(5 + 5))
print ('</body>')
print ('</html>')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment