5 ms·
A minor addition to what the article says about ipython: You can run arbitrary shell commands there without system() by prefixing them with !. It even supports
by grumdan 7y ago
A minor addition to what the article says about ipython: You can run arbitrary shell commands there without system() by prefixing them with !. It even supports using python variables as in `a = "some_dir"; ! cd $a`.