RosettaCodeData/Task/Window-creation/Python/window-creation-1.py

5 lines
52 B
Python

import Tkinter
w = Tkinter.Tk()
w.mainloop()