HOME/Articles/

tkinter example hello world (snippet)

Article Outline

Python tkinter (gui) example 'hello world'

Modules used in program:

  • import Tkinter as Tk

hello world

Python tkinter example: hello world

import Tkinter as Tk

root=Tk.Tk()
root.title("Hello World")

root.mainloop()