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

9th Feb 2017, 5:51 PM
1-up Man
1-up Man - avatar
3 ответов
+ 4
it is the same like typing "..." in cmd. It actually gives you an error "command not found"
9th Feb 2017, 7:40 PM
Georgios Markou
Georgios Markou - avatar
+ 4
your welcome
9th Feb 2017, 8:46 PM
Georgios Markou
Georgios Markou - avatar
0
Oh ok. Thank you so much
9th Feb 2017, 8:34 PM
1-up Man
1-up Man - avatar