I have made a program asp.py
and imported pyperclip
module :
import pyperclip
pyperclip.copy('hrllo world')
pyperclip.paste()
and when I run this from terminal, with
python3 asps.py
it does not display any result
what could be the reason that 'hrllo world'
does not display?
and moreover, if I run the same commands individually form python shell, it goes well. Have a look at it: