> A lot of our in base weird python comes from heavily C-wired people:
>
> The classic
> for i in range(len(alist)):
>   print alist[i]
>
> with its twin brother
>
> i=0
> while i < len(alist):
>   print alist[i]
>   i += 1
>
> And the even more annoying
>
> result = Result()
> getResult(result)
>
> JM

Please follow up with good ways to write these. I hear that creating one
really good way is a Python maxim.
-- 
https://mail.python.org/mailman/listinfo/python-list

Reply via email to