Path: csiph.com!usenet.pasdenom.info!aioe.org!news.stack.nl!newsfeed.xs4all.nl!newsfeed2.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.011 X-Spam-Evidence: '*H*': 0.98; '*S*': 0.00; 'python,': 0.02; 'syntax': 0.04; 'bits': 0.09; 'literal': 0.09; 'python': 0.11; 'def': 0.12; '(b,': 0.16; 'syntaxerror:': 0.16; 'wrote:': 0.18; 'wed,': 0.18; 'thu,': 0.19; 'seems': 0.21; 'feb': 0.22; '>>>': 0.22; 'example': 0.22; 'print': 0.22; 'alternate': 0.24; 'header:In-Reply-To:1': 0.27; 'chris': 0.29; 'am,': 0.29; 'forgot': 0.30; 'message- id:@mail.gmail.com': 0.30; '"",': 0.31; '>>>>': 0.31; "d'aprano": 0.31; 'steven': 0.31; 'file': 0.32; 'another': 0.32; 'but': 0.35; 'received:google.com': 0.35; 'there': 0.35; 'yield': 0.36; 'list': 0.37; 'to:addr:python-list': 0.38; 'pm,': 0.38; 'to:addr:python.org': 0.39; 'either': 0.39; 'most': 0.60; 'first': 0.61; 'places': 0.64; 'invalid': 0.68; '2015': 0.84; 'otten': 0.84; '1:18': 0.91 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 :content-type; bh=5/BOvvDx3orvN+bTAjzoMYQR+liAH3h6TMEe25yWOGM=; b=tLB19WVMax/xSKa8gpePXchXihy3Fw0reCgmwjEpaCfpBfzHI5jTEtsR/d8F83itZg sYYNVfGxWuoWAjYAjK8/989HaJ5JnkR8okHJG76Zm5VVayn3lmn6klVkwuJsYMrn5Wy4 DSPWEuNBvSFOqNhKnNTzby4Q6odWY5AfbrkIeoimyooOpOCzk9uSMJxZL81dI750A7e7 /MhdcwCaN2ktlqqdRaD9pTI1aGLFwr9HV75s8b/NWcXd+k2bTusQZaDrGCpBavDv5Gof 4dZaJrswEGG1ZKvTJ2AL+OVe59NYMunlUuPgmJCq61zseJcIB5t0JrqHdjxmaaDztn9T VazA== X-Received: by 10.70.133.200 with SMTP id pe8mr6401648pdb.89.1423152551153; Thu, 05 Feb 2015 08:09:11 -0800 (PST) MIME-Version: 1.0 In-Reply-To: <54d33aa6$0$13003$c3e8da3$5496439d@news.astraweb.com> References: <07f4498c-7917-4315-85d4-73283a830f2d@googlegroups.com> <54d33aa6$0$13003$c3e8da3$5496439d@news.astraweb.com> From: Ian Kelly Date: Thu, 5 Feb 2015 09:08:30 -0700 Subject: Re: meaning of: line, = To: Python 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: 35 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1423152554 news.xs4all.nl 2940 [2001:888:2000:d::a6]:46970 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:85256 On Thu, Feb 5, 2015 at 2:40 AM, Steven D'Aprano wrote: > Devin Jeanpierre wrote: > >> On Wed, Feb 4, 2015 at 1:18 PM, Chris Angelico wrote: >>> On Thu, Feb 5, 2015 at 4:36 AM, Peter Otten <__peter__@web.de> wrote: >>>> Another alternative is to put a list literal on the lefthand side: >>>> >>>>>>> def f(): yield 42 >>>> >>>> ... >>>>>>> [result] = f() >>>>>>> result >>>> 42 >>> >>> Huh, was not aware of that alternate syntax. >> >> Nor are most people. Nor is Python, in some places -- it seems like >> people forgot about it when writing some bits of the grammar. > > Got an example where you can use a,b but not [a,b] or (a,b)? >>> def f(a, (b, c)): ... print a, b, c ... >>> f(3, [4, 5]) 3 4 5 >>> def g(a, [b, c]): File "", line 1 def g(a, [b, c]): ^ SyntaxError: invalid syntax Although to be fair, the first syntax there is no longer valid either in Python 3.