June 2017
Beginner to intermediate
274 pages
6h 49m
English
There are six objects in the subprocess package that are of particular interest. Three of them are the call, check_call, and check_output functions, which are three variants on the same basic idea:
from subprocess import call, check_call, check_output
These three objects run a program, wait for it to terminate, and then tell us something about what the program did:
Read now
Unlock full access