python 将数据复制到剪贴板
#importing the module import pyperclip # copies all the data the user has copied pyperclip.copy('Copy to clipboard') # paste the copied data from clipboard pyperclip.paste()
#importing the module import pyperclip # copies all the data the user has copied pyperclip.copy('Copy to clipboard') # paste the copied data from clipboard pyperclip.paste()