[Python-Dev] sum(...) limitation (original) (raw)
Alexander Belopolsky alexander.belopolsky at gmail.com
Sat Aug 9 20:04:00 CEST 2014
- Previous message: [Python-Dev] sum(...) limitation
- Next message: [Python-Dev] sum(...) limitation
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
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>
- Previous message: [Python-Dev] sum(...) limitation
- Next message: [Python-Dev] sum(...) limitation
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]