ismaelvc

hola.py

Nov 16th, 2013
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.20 KB | None | 0 0
  1. import sys
  2. from Tkinter import *
  3.  
  4. app = Tk()
  5. app.title('Ejemplo Python.')
  6. app.geometry("300x300")
  7. etiqueta = Label(app, text='Hola, mundo en: {0}'.format(sys.platform))
  8. etiqueta.pack()
  9. app.mainloop()
Advertisement
Add Comment
Please, Sign In to add comment