Path: csiph.com!usenet.pasdenom.info!weretis.net!feeder4.news.weretis.net!feeder2.ecngs.de!ecngs!feeder.ecngs.de!xlned.com!feeder1.xlned.com!newsfeed.xs4all.nl!newsfeed6.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; 'subject:Python': 0.05; 'assign': 0.07; 'subject:help': 0.07; 'minus': 0.09; 'underscore': 0.09; 'cc:addr:python-list': 0.10; ':-)': 0.13; '-tkc': 0.16; 'boolean': 0.16; 'from:addr:python.list': 0.16; 'from:addr:tim.thechases.com': 0.16; 'from:name:tim chase': 0.16; 'message-id:@tim.thechases.com': 0.16; 'parameter:': 0.16; 'received:70.251': 0.16; 'received:dsl.rcsntx.swbell.net': 0.16; 'received:rcsntx.swbell.net': 0.16; 'received:swbell.net': 0.16; 'roy': 0.16; 'subject:user': 0.16; 'subtraction': 0.16; 'wrote:': 0.17; 'element': 0.17; 'tim': 0.18; 'meant': 0.21; 'cc:2**0': 0.23; 'cc:no real name:2**0': 0.24; 'pass': 0.25; 'cc:addr:python.org': 0.25; 'header:In-Reply-To:1': 0.25; 'header :User-Agent:1': 0.26; 'values': 0.26; 'chase': 0.29; 'optional': 0.29; 'performing': 0.30; 'function': 0.30; '(with': 0.33; 'something': 0.35; 'subject:: ': 0.38; 'mean': 0.38; 'instead': 0.39; 'skip:" 10': 0.40; 'smith': 0.71; 'received:50.22': 0.84 Date: Sun, 05 Aug 2012 18:27:47 -0500 From: Tim Chase User-Agent: Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.24) Gecko/20111120 Icedove/3.1.16 MIME-Version: 1.0 To: Roy Smith Subject: Re: Intermediate Python user needed help References: <506eb405-eb07-4175-9efb-40475cabacf1@googlegroups.com> In-Reply-To: Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - boston.accountservergroup.com X-AntiAbuse: Original Domain - python.org X-AntiAbuse: Originator/Caller UID/GID - [47 12] / [47 12] X-AntiAbuse: Sender Address Domain - tim.thechases.com X-Source: X-Source-Args: X-Source-Dir: Cc: python-list@python.org X-BeenThere: python-list@python.org X-Mailman-Version: 2.1.12 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: 36 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1344209195 news.xs4all.nl 6942 [2001:888:2000:d::a6]:42072 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:26582 On 08/05/12 16:32, Roy Smith wrote: > Tim Chase wrote: >> You either mean something like "start_point" (with an underscore >> instead of a minus), or you're performing a subtraction of "start >> minus point", in which case you'd have to assign those values before >> you use them. > > Or he meant to pass an optional parameter: > > beans, jars, crates = secret_formula(start=point) > > or an element access: > > beans, jars, crates = secret_formula(start.point) Or pass a boolean beans, jars, crates = secret_formula(start>point) Or subscript with an also-missing close-bracket beans, jars, crates = secret_formula(start[point]) Or call a function with an also-missing close-paren beans, jars, crates = secret_formula(start(point)) Or it was just a finger-flub beans, jars, crates = secret_formula(startpoint) :-) -tkc