test/hello.py

6 lines
123 B
Python

from tkinter import Tk, messagebox
root = Tku()
root.withdraw()
messagebox.showinfo("Test", "Hello World!")
root.destroy()