Dee
0
Q:

python run command

import os
os.system('cmd /k "Your Command Prompt Command"')
3
import subprocess
process = subprocess.Popen(['echo', 'More output'],
                     stdout=subprocess.PIPE, 
                     stderr=subprocess.PIPE)
stdout, stderr = process.communicate()
stdout, stderr
1
import os

os.system("ma Commande")

#Exemple:

os.system("cd Documents")
3
import os
cmd = "git --version"
returned_value = os.system(cmd)  # returns the exit code in unix
3
import os

os.system("javac lolol.java")# or something....
5
import subprocess
subprocess.call(["./shell.sh"])

# Make sure that "shell.sh" has "+x" permissions
1
#By Uku Loskit

import os
os.system("ls -l")
5
import subprocess
subprocess.run(["ls", "-l"])
0

New to Communities?

Join the community