2

我正在使用pynput并试图让鼠标单击,为此我从 pynput 导入:

from pynput.mouse import Button, Controller

然后在第 8 行,我这样做:

button = Button.Left

结果,我收到了这个错误:

Traceback (most recent call last):
  File "C:/FILEPATH.py", line 8, in <module>
button = Button.Left
      File "C:\Program Files (x86)\Python\Python37-32\lib\enum.py", line 346, in __getattr__
raise AttributeError(name) from None
    AttributeError: Left

你知道我做错了什么,或者这里缺少什么吗?

(我使用 pycharm IDE)

4

1 回答 1

2

只看文档,它应该是Button.left小写l而不是Button.Left大写l

于 2019-04-05T06:11:23.037 回答