Because of SciPy, I have stuck with Python 2 even though I would like to move to Python 3. As most of my research work is data analysis and modelling, I have used the IPython HTML notebook in my day-to-day work. However, that means I've become used to the Python 2 syntax (e.g. print x), which frequently comes up in my sanity-checking steps.
Now that SciPy seems to be Python 3-compatible (please correct me if I'm wrong), I'd like to migrate over from Python 2 to Python 3.
However, that means most of my IPython notebooks will be riddled with Python 2 print statements, which will yield tons of errors each time I re-run analyses through them.
So here's my question: Is 2to3 capable of modifying the IPython HTML notebooks? Logistical challenge: I have ~30-40 of them now, scattered in different project folders. If 2to3 is not the correct solution, should I do something else?