Lerarner
0
Q:

how to run cmd command python

import os
command = "ls"  #The command needs to be a string
os.system(command) #The command can also be passed as a string, instead of a variable
1
import os
cmd = "git --version"
returned_value = os.system(cmd)  # returns the exit code in unix
3
CMD /K - execute a command then remain

import os
os.system('cmd /k "Your Command Prompt Command"')
1
import subprocess
subprocess.run(["ls", "-l"])
0

New to Communities?

Join the community