Answers for "execute a system command in python"

3

python run a system command

import os
cmd = "git --version"
returned_value = os.system(cmd)  # returns the exit code in unix
Posted by: Guest on April-01-2020
0

python - How to execute a program or call a system command?

Use the subprocess module in the standard library:

import subprocess subprocess.run(["ls", "-l"]) 
The advantage of subprocess.run over os.system is that it is more flexible (you can get the stdout, stderr, the "real" status code, better error handling, etc...).

Even the documentation for os.system recommends using subprocess instead:

The subprocess module provides more powerful facilities for spawning new processes and retrieving their results; using that module is preferable to using this function. See the Replacing Older Functions with the subprocess Module section in the subprocess documentation for some helpful recipes.

On Python 3.4 and earlier, use subprocess.call instead of .run:

subprocess.call(["ls", "-l"])
Posted by: Guest on December-26-2021

Code answers related to "execute a system command in python"

Python Answers by Framework

Browse Popular Code Answers by Language