前期準(zhǔn)備
- 安裝第三方庫(kù):pyperclip
使用演示
- pyperclip有2個(gè)方法copy() + paste()
- copy():將字符串寫(xiě)入剪切板,可在pc上直接粘貼使用扒袖,可至直接只用paste()方法讀取
- paste():讀取剪切板內(nèi)容
import pyperclip
pyperclip.copy('The text to be copied to the clipboard.')
pyperclip.paste() # 'The text to be copied to the clipboard.'
print(f"我是復(fù)制的內(nèi)容:{pyperclip.paste()}")
我是復(fù)制的內(nèi)容:The text to be copied to the clipboard.
進(jìn)程已結(jié)束征字,退出代碼 0