venkata subramanian <[EMAIL PROTECTED]> wrote:
>  It just reminds me that the most important thing about learning a
> language is also to learn its style and "paradigm" and not just its
> syntax and semantics. Or one might end up wrenching in
> "C-like-thinking" into a python program where it might not look
> necessarily pretty.
Exactly!

One sure sign of somebody trying to write C in Python is when they loop 
over a list by doing

for i in range (len (myList)):
   doSomethingWith (myList[i])

or when they laboriously check for every possible error condition before 
performing an operation instead of just doing it and catching the exception.
-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to