Answers for "can we call python from linux shell"

6

run linux command using python

import subprocess
subprocess.call("command1")
subprocess.call(["command1", "arg1", "arg2"])
Posted by: Guest on July-31-2020
0

call python from bash shell

#!/bin/sh
python python_script.py
Posted by: Guest on May-25-2021

Code answers related to "can we call python from linux shell"

Python Answers by Framework

Browse Popular Code Answers by Language