Answers for "run python file in python shell"

28

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

Python Answers by Framework

Browse Popular Code Answers by Language