标签: python python-3.x macos pyautogui
我正在搞弄PyAutoGUI,并且正在学习hotkey函数。我希望它按Command + R,但找不到关键字(例如control变成ctrl)。什么事?
hotkey
control
ctrl
我正在使用Pycharm。我完全意识到这将导致永远的循环。
我正在向this tutorial学习。
感谢帮助!
答案 0 :(得分:1)
command的关键字仅为command。
command
所以pyautogui.hotkey('command', 'r')应该可以正常工作。
pyautogui.hotkey('command', 'r')
Documentation