Last active
September 19, 2016 21:36
-
-
Save nicanor-romerovenier/36cc0abd38ffb18c4e3ba4289bea53bf to your computer and use it in GitHub Desktop.
Programar Fácil - Tutorial de Python # 9 - Ejercicio 2
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env python | |
| # -*- coding: utf-8 -*- | |
| import tkinter | |
| from tkinter import messagebox | |
| def accion_de_mi_boton(): | |
| respuesta = messagebox.askyesno("Mi dialogo emergente", "Te gusta mi programa?") | |
| if respuesta: | |
| mensaje = "Me alegro mucho :)" | |
| else: | |
| mensaje = "Que mal :(" | |
| messagebox.showinfo("Mi diálogo emergente", mensaje) | |
| mi_ventana = tkinter.Tk() | |
| mi_ventana.geometry("640x480") | |
| mi_boton = tkinter.Button(text="Mi botón!", command=accion_de_mi_boton) | |
| mi_boton.pack() | |
| mi_ventana.mainloop() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment