1 window = Tk() # or window = TopLevel()
2 # "350x150" == window size (350 pixels wide and 150 pixels high)
3 # "+220+80" == window position (220 pixels from the left screen margin and
4 # 80 pixels from the top screen margin
5 window.geometry("350x150+220+80")