Advertisement
teslariu

borrador tkinter

Nov 25th, 2022
946
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.26 KB | None | 0 0
  1. #!/usr/bin/env python
  2. # -*- coding: utf-8 -*-
  3.  
  4. import tkinter as tk
  5.  
  6. ventana = tk.Tk()
  7. ventana.config(width=600, height=180)
  8. ventana.title("Mi primera app gráfica")
  9. # ventana.resizable(False, False) # impide redimesionar la ventana
  10.  
  11. ventana.mainloop()
  12.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement