Created
June 30, 2016 15:01
-
-
Save azhar22k/ff1a8ae602bfc80469c8214735e949ea to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import pyperclip | |
c=input('Enter text you want to copy: ') | |
pyperclip.copy(c) | |
print('\n'+c+" is on your clip board now, press any key to paste it on stdoutput") | |
input('') | |
print(pyperclip.paste()) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment