It looks like you're new here. If you want to get involved, click one of these buttons!
#!/usr/bin/python
from Tkinter import Tk
x = Tk()
x.withdraw()
x.clipboard_clear()
i = raw_input(\">> \")
x.clipboard_append(i)
x.destroy()
print repr(i), \"Copied to clipboard\"
raw_input(\"Press enter to exit\")