Answers for "how to execute a python file in shell script"

-1

call shell script from python

import subprocess
subprocess.call(["./shell.sh"])

# Make sure that "shell.sh" has "+x" permissions
Posted by: Guest on May-09-2020

Code answers related to "how to execute a python file in shell script"

Python Answers by Framework

Browse Popular Code Answers by Language