from Tkinter import *
import sys
Root=Tk()
RTitle=Root.title("Windows")
RWidth=Root.winfo_screenwidth()
RHeight=Root.winfo_screenheight()
Root.geometry("%dx%d")%(RWidth,RHeight))
mainloop()
Hello. When I run this code the window takes up the entire screen(win7).but remains below the bottom of the window portion of the taskbar. Even if the screen size is changed automatically carry out this.According to the height and width of the window to the taskbar. How can I do it?
Thanks