how do "real" python programmers work?

bruno at modulix onurb at xiludom.gro
Fri Jan 13 04:03:03 EST 2006


bblais wrote:
> Hello,
> 
(snip)
> 
> In C++, I open up an editor in one window, a Unix shell in another. 
(snip)
> In Matlab, I do much the same thing, except there is no compile phase.
(snip)
> In Python, there seems to be a couple ways of doing things.   I could
> write it in one window, and from a Unix shell call
>                            python myscript.py
> and be like C++, but then I lose the interactiveness which makes
> prototyping easier.  If I use the python shell, I can use import (and
> reload), or execfile perhaps.

> How do experienced python programmers usually do it?  

I'm not sure I qualify as a "experienced", but...

> Is there a
> "usually" about it, or is it up to personal taste? 

Mostly. There's no shortage of Python IDE/editors/...

> Are there any
> convenient ways of doing these things?

<my-2-cents>
Try emacs + python-mode. It offers the best editor/interactive shell
I've ever seen.
</my-2-cents>

-- 
bruno desthuilliers
python -c "print '@'.join(['.'.join([w[::-1] for w in p.split('.')]) for
p in 'onurb at xiludom.gro'.split('@')])"



More information about the Python-list mailing list