[Python-Dev] sum(...) limitation

Alexander Belopolsky alexander.belopolsky at gmail.com
Sat Aug 9 20:04:00 CEST 2014


On Sat, Aug 9, 2014 at 2:02 PM, Alexander Belopolsky <
alexander.belopolsky at gmail.com> wrote:

> y='';for in in x; y+= x


Should have been

y=''
for i in x; y += i
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mail.python.org/pipermail/python-dev/attachments/20140809/d923acf3/attachment.html>


More information about the Python-Dev mailing list