Subprocess_Shutil_Module
###Contents Module -subprocess - replaces os.system and os.spawn Pytest Pytest - Example Test coverage File and Directory Access filecmp — File and Directory Comparisons fileinput — Iterate over lines from multiple input streams Data Compression and Archiving shutil — High-level file operations ---------------------------------------------------------- ###*** Module -subprocess - replaces os.system and os.spawn import subprocess #Arguments meaning stdin, stdout and stderr specify the executed program's standard input, standard output and standard error file handles, values are PIPE, DEVNULL, an existing file descriptor (a positive integer), an existing file object, and None stderr can be STDOUT universal_newlines if it is False the file objects stdin, stdout and stderr will be opened as binary streams, and no line ending conversion is done shell ...