

# https://www.globalsino.com/ICs/page4853.html
# Copy text into clipboard and then you can paste it anywhere

import pyperclip

def clipboard_copy(text):
  pyperclip.copy(text)
  print(pyperclip.paste())

clipboard_copy("'This is Yougui Liao!' is copied into clipboard.")










