tkinter maximise window

Solutions on MaxInterview for tkinter maximise window by the best coders in the world

showing results for - "tkinter maximise window"
Cathal
09 Nov 2020
1import Tkinter
2
3MyRoot = Tkinter.Tk()
4MyRoot.state("zoomed")
5
6MyRoot.mainloop()
7
Aniya
28 Nov 2018
1root = Tk()
2w, h = root.winfo_screenwidth(), root.winfo_screenheight()
3root.geometry("%dx%d+0+0" % (w, h))
4