728x90

import pyautogui as pag

def track_mouse():
    while True:
        print( "Current Mouse Position : ", pag.position() )
        time.sleep(1)

track_mouse()

728x90

+ Recent posts