This is my code, I put my mouse in the top left corner but it never says "Test succeed"
import mouse
x = mouse.get_position()
while not x == (0, 0):
print(mouse.get_position())
else
print("Test Succeed")
>Solution :
You need to change the value of x
:
import mouse
x = mouse.get_position()
while not x == (0, 0):
x = mouse.get_position()
print(x)
else:
print("Test Succeed")