Search code examples
pythonpython-3.xpyautogui

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


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


Solution

  • 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