我正在尝试创建一个弹出消息,该消息在单击按钮时出现。在Python 3.4.1中有没有办法使用tkinter?
答案 0 :(得分:2)
试试这个
import tkinter.messagebox
def onClick():
tkinter.messagebox.showinfo("Title goes here","Message goes here")
root = tkinter.Tk()
button = tkinter.Button(root,text = "Click Me", command = onClick)
button.pack()
root.mainloop()