Hi everyone,
I'm feeling a little dizzy trying to place the root window of my Tkinter app on the screen.
I followed mawe advice and coded like this:
root = Tk()
root.config(bg="white")
w, h = root.winfo_screenwidth(), root.winfo_screenheight()
root.geometry("%dx%d+0+0" % (w, h))
However the window gets placed wrongly and partially out of the screen.
thank you,
Gab