Python 3.5.2尝试除了无效的语法

时间:2017-06-27 15:40:08

标签: python python-3.x syntax except

我在except语句中收到无效语法错误。代码运行正常,直到我添加了

import pyautogui
print('Press Ctrl-C to quit.')
while True:
     pyautogui.click(1624, 967)
except KeyboardInterrupt:
    print('\nDone.')

我确定我只是错过了一些愚蠢的事情。

谢谢!

1 个答案:

答案 0 :(得分:1)

您忘了添加try声明。

import pyautogui
print('Press Ctrl-C to quit.')

try:
    while True:
        pyautogui.click(1624, 967)
except KeyboardInterrupt:
    print('\nDone.')