“pyperclip” Código de respuesta

Copiar al portapapeles Python

import pyperclip
pyperclip.copy('The text to be copied to the clipboard.')
Dabuilda

pyperclip

>>> import pyperclip
>>> pyperclip.copy('The text to be copied to the clipboard.')
>>> pyperclip.paste()
'The text to be copied to the clipboard.'
Grotesque Goldfinch

pasta de pyperclip

>>> import pyperclip
>>> 
>>> pyperclip.copy('This is copied to the clipboard.')
>>> 
>>> pyperclip.paste()
'This is copied to the clipboard.'
>>>
Wide-eyed Wallaby

Respuestas similares a “pyperclip”

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código