How to get current window size using Tkinter or maybe using the standard python library?
Use the following generic widget methods (where w is the widget):
w
w.winfo_height() w.winfo_width()
You can also use the following:
w.winfo_reqheight() w.winfo_reqwidth()
Read about universal widgets .