Python 无法在桌面上获取光标位置 (x, y)

Python Trouble getting cursor position (x, y) on desktop

我一直在寻找方法来找到我的光标位置并将其放在两个变量 x 和 y 上。但大多数答案都已过时,我似乎无法让它们发挥作用。我宁愿它在 pythons 标准库或 pywinauto 中。我也更喜欢 python 2.7。谢谢

您可以使用 PyMouse 来做到这一点。

>>> import pymouse;
>>> mouse = pymouse.PyMouse()
>>> mouse.position()
(288.046875, 396.15625)
>>> mouse.position()
(0.0, 0.0)
>>> mouse.position()
(1439.99609375, 861.2890625)