1>>> import pyperclip
2>>> pyperclip.copy('The text to be copied to the clipboard.')
3>>> pyperclip.paste()
4'The text to be copied to the clipboard.'
5
1>>> import pyperclip
2>>>
3>>> pyperclip.copy('This is copied to the clipboard.')
4>>>
5>>> pyperclip.paste()
6'This is copied to the clipboard.'
7>>>
8