Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created August 17, 2021 17:40
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/54fbaaaba64b7b564d27d38323a062e1 to your computer and use it in GitHub Desktop.
Save parzibyte/54fbaaaba64b7b564d27d38323a062e1 to your computer and use it in GitHub Desktop.
raiz = tk.Tk()
raiz.etiqueta = tk.Label(
raiz, text="Hola Tkinter!\nProgramando en Python\nparzibyte.me"*5)
raiz.etiqueta.pack(side="top")
app = tk.Frame()
app.pack()
raiz.update()
imprimir_informacion(raiz)
app.mainloop()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment