#pyperclip

python3 使用pyperclip读写剪贴板(windows)

 importpyperclipdd=pyperclip.paste()print(dd)pyperclip.copy("docs.python.org")print(pyperclip.paste())pyperclip.copy("hello")print(pyperclip.paste())输出hell...