赞
踩
- import pyautogui
- import pyperclip
-
- pyautogui.hotkey("enter") # enter键
- pyautogui.hotkey("win", "e") # 打开文件资源管理器
- pyautogui.hotkey("Ctrl", "c") # 复制
-
- path = "usr/local/isep"
- pyperclip.copy(path) # 将路径提前复制到剪切板
- pyautogui.hotkey("Ctrl", "v") # 粘贴剪切板内容
- import pyautogui
-
- # 输入指定内容,注意只能输入字母,不支持输入中文,如果想输入中文可以参考上面的截切版方法
- pyautogui.typewrite("helloworld")
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。