i would like to know if there was a way to keep showing the live mouse position on a tkinter window. I know how to find mouse coordinates.
x, y = win32api.GetCursorPos()
mousecords = Label(self.root, text='x : ' + str(x) + ', y : ' + str(y))
mousecords.place(x=0, y=0)
But I need the label to keep updating as and when the mouse moves. Help will be appreciated Thank you!