HowTo Read File in Python Interpreter?
I want to
f = open("~/jobs/2014-12-16/output/output.log", "r")
in Python interactive Shell. How?
Getting:
IOError: [Errno 2] No such file or directory: '~/jobs/2014-12-16/output/output.log'
Without path it works if Interpreter started in parent working directory.