Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- import sys
- from Tkinter import *
- app = Tk()
- app.title('Ejemplo Python.')
- app.geometry("300x300")
- etiqueta = Label(app, text='Hola, mundo en: {0}'.format(sys.platform))
- etiqueta.pack()
- app.mainloop()
Advertisement
Add Comment
Please, Sign In to add comment