我在except语句中收到无效语法错误。代码运行正常,直到我添加了
import pyautogui
print('Press Ctrl-C to quit.')
while True:
pyautogui.click(1624, 967)
except KeyboardInterrupt:
print('\nDone.')
我确定我只是错过了一些愚蠢的事情。
谢谢!
答案 0 :(得分:1)
您忘了添加try
声明。
import pyautogui
print('Press Ctrl-C to quit.')
try:
while True:
pyautogui.click(1624, 967)
except KeyboardInterrupt:
print('\nDone.')