Advertisement
teslariu

pack_tk

Mar 10th, 2021
141
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.42 KB | None | 0 0
  1. #!/usr/bin/env python
  2. # -*- coding: utf-8 -*-
  3. #
  4. import tkinter as tk
  5. from tkinter import ttk
  6.  
  7. ventana = tk.Tk()
  8. ventana.title("PACK")
  9.  
  10. caja = ttk.Entry()
  11. caja.pack()
  12.  
  13. boton = ttk.Button(text="HOLA")
  14. boton.pack(padx=30, pady=30, ipadx=50, ipady=70)
  15.  
  16. boton = ttk.Button(text="HOLA MUNDO")
  17. boton.pack(expand=True, fill=tk.BOTH)
  18.  
  19. etiqueta = ttk.Label(text="JAJAJAJA")
  20. etiqueta.pack(after=caja)
  21.  
  22. ventana.mainloop()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement