This file contains 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
from Tkinter import * | |
from tkMessageBox import * | |
def main(): | |
showinfo("Title", "Your message here") | |
showerror("An Error", "Oops!") | |
showwarning("Title", "This may not work...") | |
askyesno("Title", "Do you love me?") | |
askokcancel("Title", "Are you well?") | |
askquestion("Title", "How are you?") | |
askretrycancel("Title", "Go again?") | |
askyesnocancel("Title", "Are you well?") | |
main() |
No hay comentarios:
Publicar un comentario