Answers for "execute python in terminal linux"

6

run linux command using python

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

python how to run terminal command

#By Uku Loskit

import os
os.system("ls -l")
Posted by: Guest on January-09-2020

Code answers related to "execute python in terminal linux"

Python Answers by Framework

Browse Popular Code Answers by Language