I was wondering if anyone has suggestions for writing a backwards-compatible input() call for retrieving a filepath?
In Python 2.x, raw_input worked fine for input l
You could import the function:
from builtins import input
Unfortunately though this method requires an external dependency via pip install future
pip install future