Window creation: Difference between revisions

Content added Content deleted
Line 1,809: Line 1,809:
w = Tkinter.Tk()
w = Tkinter.Tk()
w.mainloop()</lang>
w.mainloop()</lang>

{{works with|Python|3.7}}
<!-- see also https://stackoverflow.com/questions/673174/which-tkinter-modules-were-renamed-in-python-3 -->
<lang python>import tkinter
w = tkinter.Tk()
w.mainloop()</lang>


==={{libheader|wxPython}}===
==={{libheader|wxPython}}===