Search Results

3
votes

In Python, how I do use subprocess instead of os.system?

import subprocess p=subprocess.Popen(args, stdout=subprocess.PIPE) print p.communicate()[0] It would look pretty much the same. But the path should not be r'"whatever the …