Python:剪切板的读取&写入

前期准备

  • 安装第三方库:pyperclip

使用演示

  • pyperclip有2个方法copy() + paste()
  • copy():将字符串写入剪切板,可在pc上直接粘贴使用,可至直接只用paste()方法读取
  • paste():读取剪切板内容
import pyperclip


pyperclip.copy('The text to be copied to the clipboard.')
pyperclip.paste()   # 'The text to be copied to the clipboard.'
print(f"我是复制的内容:{pyperclip.paste()}")
我是复制的内容:The text to be copied to the clipboard.

进程已结束,退出代码 0

你可能感兴趣的:(Python:剪切板的读取&写入)