New to python, do I need an IDE or is vim still good enough?

Michael Torrie torriem at gmail.com
Thu Dec 27 16:28:21 EST 2012


On 12/27/2012 01:01 PM, mogul wrote:
> Do I really need a real IDE, as the windows guys around me say I do,
> or will vim, git, make and other standalone tools make it the next 20
> years too for me?

I've never ever used an IDE with Python.  With Python I can code for an
hour in vim and it runs with only maybe one minor syntax error.  Often
the code runs first try, and runs correctly.  Having a reference to the
python standard library is about the only thing I need.  I typically use
python in a nutshell (dead tree) or just a browser page open to the
official docs.  Fortunately Python's use of namespaces and allowing the
use of singleton objects (we call them modules!) eliminates must of the
verbose rubbish that Java's libraries have.



More information about the Python-list mailing list