How to print out 'Live' mouse position coordinates using pyautogui?

SovietStormSam picture SovietStormSam · Jun 14, 2017 · Viewed 16.7k times · Source

I used lots of different source codes, and even copied and pasted but I keep getting random symbols that shift when i move my mouse over them here is my code...

import pyautogui, time, sys
print('Press Ctrl-C to quit.')
try:
    while True:
        CurserPos = pyautogui.position()
        print('\b' * len(CurserPos), end='\r')
        sys.stdout.flush()

I will show the output as an image. I am rather new to Python and would really appreciate some expert advice. Thanks

Answer

Joji Antony picture Joji Antony · Jun 16, 2017

Code :

import pyautogui
pyautogui.displayMousePosition()

Here is some output :

Press Ctrl-C to quit.
X:  0 Y: 1143 RGB: ( 38,  38,  38)

Here is the video where this is being demonstrated https://youtu.be/dZLyfbSQPXI?t=809