martes, 13 de noviembre de 2018

PRACTICA #18: VENTANA CON BOTÓN Y ETIQUETA

#!/usr/bin/python
# -*- coding: utf-8 -*-
# www.pythondiario.com

from Tkinter import *

app = Tk()
app.title("Aplicacion grafica en python")
etiqueta = Label(app, text="Hola mundo!!!")
boton = Button(app, text="OK!!")

etiqueta.pack()
boton.pack()
app.mainloop()
Ejecución de código

No hay comentarios:

Publicar un comentario

U4: PRACTICA #21 JUEGO EN 3D