Python shell is just cool
I really loved to learn the Python shell, for those who don’t know what it is, here it is:
I just had a simple issue, I was looking for the path where testoob is installed. Oops, I have a local copy of it in my projects folder. So lets remove the project project-path from the sys.path (which is the default import path Python uses) and reload() the module. Way cool.
It’s just sooo handy trying things out on the Python shell, if you didn’t use it yet, start doing that!
Christoph Neuroth said,
December 5, 2005 at 4:59 pm
If you like the python shell, you’ll *love* the ipython shell: http://ipython.scipy.org/
cheers, Chris
Ori Peleg said,
January 4, 2006 at 11:23 pm
The Python shell is cool, I agree
The things we did before neat interactive shells… you couldn’t just try a piece of code to experiment, you had to edit-compile-link-run. It can be automated, but it just isn’t the same.