Answers for "unix command in python script"

1

unix command in python script

from subprocess import call
call('echo "I like potatos"', shell=True)
call('pwd', shell=True)
Posted by: Guest on October-13-2021

Python Answers by Framework

Browse Popular Code Answers by Language