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