To copy text to the clipboard in Python, use the pyperclip module.
Before you can use the module, you need to install it with:
pip install pyperclip
Then you can use its copy() method to copy text to the clipboard by:
import pyperclip s1 = "Hello world" pyperclip.copy(s1) s2 = pyperclip.paste() print(s2)
Output:
Hello world
Conclusion
Thanks for reading. I hope you found what you were looking for.
Happy coding!