hi, i am quite new to python.subprocess()
if i folk a new process from python, will the execution speed of this new process be compromised?
imagine that i have the
#python
import subprocess
subprocess.call( MyBinary )
basically, is there any difference between
./MyBinary
and
./python ruMyBinary.py
?