Path: csiph.com!usenet.pasdenom.info!aioe.org!news.stack.nl!newsfeed.xs4all.nl!newsfeed4a.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.000 X-Spam-Evidence: '*H*': 1.00; '*S*': 0.00; 'python.': 0.02; 'patterns': 0.04; '(of': 0.07; 'assign': 0.07; 'assignment': 0.07; 'literal': 0.09; 'way:': 0.09; 'yeah,': 0.09; 'cc:addr:python- list': 0.11; 'python': 0.11; 'missed': 0.12; '(1,': 0.16; '(2,': 0.16; '(x,': 0.16; 'exceptions,': 0.16; 'imo.': 0.16; 'statement.': 0.16; 'syntaxerror:': 0.16; 'x,y,z': 0.16; 'language': 0.16; 'wrote:': 0.18; 'thu,': 0.19; 'feb': 0.22; 'cc:addr:python.org': 0.22; 'cc:2**0': 0.24; 'header:In-Reply- To:1': 0.27; 'am,': 0.29; 'matching': 0.30; 'message- id:@mail.gmail.com': 0.30; '"",': 0.31; '>>>>': 0.31; 'file': 0.32; 'sense': 0.34; "can't": 0.35; 'late': 0.35; 'but': 0.35; 'received:google.com': 0.35; 'really': 0.36; 'should': 0.36; 'does': 0.39; 'skip:n 10': 0.64; 'to:addr:gmail.com': 0.65; 'side': 0.67; 'miss': 0.74; 'hand': 0.80; '2015': 0.84; 'sorely': 0.84; 'reply,': 0.93 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:from:date:message-id:subject:to :cc:content-type; bh=Ypynu58X6HuqezgJ/HcgoJYXheN8XuDsvzEm15QP8Ao=; b=lFAutnuXeEK2aqZjiCoDlrhlmYBpRU2+dLN4Jq3DUtkBgmhvVS00wzrKlrorJklJ2O x0HHaUxh/St7eiu4XXQ1CeADvp3ZkmbjS0FdqT1xuryPVdIPvAK7l9RHNC9oRKWbDzCL 76j2azyR0ulx2rKl4MpwIo97hv9ptviMoFmZV8c8S/evn9fZ1uvijrzAg9iETLqqisjU 3x9Xvonq+sTGPq4jOhWDowmv5aVYeLGW698Kp88r1dNR7eJ4daio3VRknyKXbmrhafFx CCX0eXTzvuwAxGesFdUqdaf6LEF0BZg9Qc0TepyYX692bqaCM1dPJ3WXp46wI90N1EyB c+hg== X-Received: by 10.224.37.72 with SMTP id w8mr8099998qad.58.1423228185628; Fri, 06 Feb 2015 05:09:45 -0800 (PST) MIME-Version: 1.0 In-Reply-To: <98777b0d-8f6c-4e2d-965f-0ef875e962b0@googlegroups.com> References: <07f4498c-7917-4315-85d4-73283a830f2d@googlegroups.com> <54d33aa6$0$13003$c3e8da3$5496439d@news.astraweb.com> <6304fe65-0606-40eb-8732-c9ba9ae168e7@googlegroups.com> <98777b0d-8f6c-4e2d-965f-0ef875e962b0@googlegroups.com> From: Devin Jeanpierre Date: Fri, 6 Feb 2015 05:09:05 -0800 Subject: Re: meaning of: line, = To: Rustom Mody Content-Type: text/plain; charset=UTF-8 Cc: "comp.lang.python" 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: 35 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1423228193 news.xs4all.nl 2874 [2001:888:2000:d::a6]:53415 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:85286 Sorry for late reply, I somehow missed this email. On Thu, Feb 5, 2015 at 8:59 AM, Rustom Mody wrote: > The reason I ask: I sorely miss haskell's pattern matching in python. > > It goes some way: > >>>> ((x,y),z) = ((1,2),3) >>>> x,y,z > (1, 2, 3) > > But not as far as I would like: > >>>> ((x,y),3) = ((1,2),3) > File "", line 1 > SyntaxError: can't assign to literal >>>> > > [Haskell] > > Prelude> let (x, (y, (42, z, "Hello"))) = (1, (2, (42, 3, "Hello"))) > Prelude> (x,y,z) > (1,2,3) Yeah, but Haskell is ludicrous. Prelude> let (x, 2) = (1, 3) Prelude> Only non-falsifiable patterns really make sense as the left hand side of an assignment in a language without exceptions, IMO. Otherwise you should use a match/case statement. (Of course, Python does have exceptions...) -- Devin