"""Common filenames and locations. """ from os import access, F_OK, mkdir output_dir = 'output' if not access(output_dir,F_OK): mkdir (output_dir)