You can get the screen resolution and then enter them in your root.geometry , like this:
from Tkinker import * root = Tk() width, height = root.winfo_screenwidth(), root.winfo_screenheight() root.geometry('%dx%d+0+0' % (width,height)) root.mainloop()
source share