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 回答1: Code : import pyautogui pyautogui