I know this is a recurrent question, but I can't find a useful answer.
In Python, for running a shell command one can use this.
If I do the same inside Jupyter I got no output. How can I see the results of executing the command? Doing
print subprocess.call(["ping", "-c 2", "www.cyberciti.biz"])
returns zero.