Member-only story
Auto copy paste using Python
Aug 20, 2024
import pyperclip as pc
text1 = input("Enter a text : ")
pc.copy(text1)
text2 = pc.paste()
print(text2)
Hello Clcoding
Member-only story
import pyperclip as pc
text1 = input("Enter a text : ")
pc.copy(text1)
text2 = pc.paste()
print(text2)
Hello Clcoding
Learn python tips and tricks with code I Share your knowledge with us to help society. Python Quiz: https://www.clcoding.com/p/quiz-questions.html