How to Create New Windows in tKinter. In this video I’ll show you how to create new Windows in your tKinter app using the Toplevel() function:
top = Toplevel()
top.title(‘My Second Window’)
In this series I’ll show you how to create graphical user interfaces for Python with Tkinter.
Add comment