0
What does this do?
import shlex from subprocess import Popen, PIPE cmd = "..." process = Popen(shlex.split(cmd), stout=PIPE) process.communicate() exit_code = process.wait
3 ответов
+ 4
it is the same like typing "..." in cmd. It actually gives you an error "command not found"
+ 4
your welcome
0
Oh ok. Thank you so much