ZeroSeventty

piece of html code

Oct 8th, 2020
116
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.54 KB | None | 0 0
  1. html = f"<html><head><title> Mis datos </title></head><body><center><h2> Nombre:{nombre}<br> </h2><h2> Fecha Nacimiento: {fn} <br></h2><h2> edad: {difd} <br> </h2><h2> Signo: {signo} <br> </h2><img src='@foto' height='200' /></center></body></html>"
  2. f= open(html, 'w')
  3. f.write(html, "r")
  4. f.close()
  5. webbrowser.open(os.path.realpath('html.html'))
  6.  
  7. # Recuerda que dentro de comillas dobles, se usan comillas simples "Un texto 'con doble comillas'"
  8. # Más info sobre concatenación acá https://unipython.com/concatenacion-de-strings-y-formato-en-python/
Add Comment
Please, Sign In to add comment