(0,0) ポイントが左下にあり、(500x500) が右上にあるように、tkinter ウィンドウ (サイズ 500x500) の座標を設定するにはどうすればよいですか? Google はあまり役に立ちませんでした。
def graphDisplay(distance, elevation):
'''draws up the graph.'''
#creates a window
root = Tk()
#sets the name of the window
root.title("Graph")
#sets the size of the window
root.geometry("500x500")
#sets the background of the window
root.configure(background='green')
#create a canvas object to draw the circle
canvas = Canvas(root)
#runs the program until you click x
root.mainloop