Answers for "how to execute a python script from python shell"

23

execute command in python script

import os

os.system("ma Commande")

#Exemple:

os.system("cd Documents")
Posted by: Guest on June-10-2020
1

run a shell script from python

import subprocess

output = subprocess.check_output('pidstat -p ALL'.split(' '), stderr=subprocess.STDOUT, universal_newlines=True)
print(output)
Posted by: Guest on June-12-2021

Code answers related to "how to execute a python script from python shell"

Python Answers by Framework

Browse Popular Code Answers by Language