May 2018
Intermediate to advanced
380 pages
9h 37m
English
if os.path.isfile('.pythonrc.py'): exec(open('.pythonrc.py').read()
import os filename = os.environ.get('PYTHONSTARTUP') if filename and os.path.isfile(filename): with open(filename) as fobj: startup_file = fobj.read() exec(startup_file)