Path: csiph.com!v102.xanadu-bbs.net!xanadu-bbs.net!feeder.erje.net!eu.feeder.erje.net!ecngs!feeder2.ecngs.de!feeds.phibee-telecom.net!newsfeed.xs4all.nl!newsfeed3a.news.xs4all.nl!xs4all!newsgate.cistron.nl!newsgate.news.xs4all.nl!post.news.xs4all.nl!not-for-mail Return-Path: X-Original-To: python-list@python.org Delivered-To: python-list@mail.python.org X-Spam-Status: OK 0.013 X-Spam-Evidence: '*H*': 0.97; '*S*': 0.00; 'mathematics': 0.05; 'subject:Python': 0.06; 'string': 0.09; 'cc:addr:python-list': 0.11; 'jan': 0.12; '23,': 0.16; 'from:addr:rosuav': 0.16; 'from:name:chris angelico': 0.16; 'operation,': 0.16; 'wrote:': 0.18; 'cc:addr:python.org': 0.22; 'cc:2**0': 0.24; 'header:In- Reply-To:1': 0.27; 'message-id:@mail.gmail.com': 0.30; 'operations.': 0.31; 'fri,': 0.33; 'sense': 0.34; 'maybe': 0.34; 'but': 0.35; 'received:google.com': 0.35; 'pm,': 0.38; 'world': 0.66; 'subject:! ': 0.74; '2015': 0.84; 'to:none': 0.92 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:cc :content-type; bh=r77ph9loC35LgpNe9/TEXnPWYnRCTXciRqklp13O2Zs=; b=IDCcikrGNnyeZKxaj7s+q4wzr86LwLSSLUKqvIG2hEkASM64Z7S2xrKQOxDHItvLVx gGfXe8lThIKEeWUBZ7LLjbS+cLD8Z/Pvdeh2OUgSUuV0gKugQE4i8leGA3YNT1cKTKcr nTvqFPg+TKlo7qXymgGfA9EvefZ5XqkDh5OxjibVgWglyWFSJaeZ/UJY17NTnSiNa22X jeVYxXQ8v7GC9HLtzVOLbhSnjqbUZA1ZGAFkU9kXo7zeQQdy7ZBjmmOBdOV5ukP5LzWe afhWIS4ZYvRJPCQDbmEHXI1MbOFAm55vc/V+WzM/0pNpO7RZGYNJ+u4mWUX6dXRfjv06 fRgw== MIME-Version: 1.0 X-Received: by 10.140.97.203 with SMTP id m69mr9569777qge.39.1421985171776; Thu, 22 Jan 2015 19:52:51 -0800 (PST) In-Reply-To: <12a0f55b-c6d8-4eab-8736-ec9dc46151a6@googlegroups.com> References: <54c07d04$0$13012$c3e8da3$5496439d@news.astraweb.com> <12a0f55b-c6d8-4eab-8736-ec9dc46151a6@googlegroups.com> Date: Fri, 23 Jan 2015 14:52:51 +1100 Subject: Re: Python is DOOMED! Again! From: Chris Angelico Cc: "python-list@python.org" Content-Type: text/plain; charset=UTF-8 X-BeenThere: python-list@python.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: General discussion list for the Python programming language List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Newsgroups: comp.lang.python Message-ID: Lines: 11 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1421985178 news.xs4all.nl 2899 [2001:888:2000:d::a6]:57284 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:84308 On Fri, Jan 23, 2015 at 2:11 PM, Rustom Mody wrote: > 1. [1,2,3] + [4,5,6] > uses the same symbol for an unrelated operation > 1 + 4 They're not unrelated operations. Maybe in the purity of mathematics they're distinct, but in the practical world of "getting-stuff-done programming", they're the same operation, as is string concatenation. It makes perfect sense to use the same symbol for all of them. ChrisA