Path: csiph.com!usenet.pasdenom.info!weretis.net!feeder4.news.weretis.net!rt.uk.eu.org!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.002 X-Spam-Evidence: '*H*': 1.00; '*S*': 0.00; 'value,': 0.04; 'differently': 0.07; 'method.': 0.07; 'variables': 0.07; 'immutable': 0.09; 'received:80.91': 0.09; 'received:80.91.229': 0.09; 'received:gmane.org': 0.09; 'received:list': 0.09; 'variables.': 0.09; 'python': 0.11; '*values*': 0.16; '5:00': 0.16; 'bind': 0.16; 'received:80.91.229.3': 0.16; 'received:plane.gmane.org': 0.16; 'subject:variable': 0.16; 'variable.': 0.16; 'wrote:': 0.18; 'variable': 0.18; 'passing': 0.19; "python's": 0.19; 'value.': 0.19; '>>>': 0.22; 'reset': 0.22; 'header:User-Agent:1': 0.23; '(or': 0.24; 'values': 0.27; 'gets': 0.27; 'header:X-Complaints-To:1': 0.27; 'header:In-Reply- To:1': 0.27; 'am,': 0.29; 'comparison': 0.31; 'gary': 0.31; 'symbolic': 0.31; 'values.': 0.31; 'another': 0.32; 'quite': 0.32; 'bugs': 0.33; 'could': 0.34; 'basic': 0.35; "can't": 0.35; 'definition': 0.35; 'but': 0.35; 'there': 0.35; 'much.': 0.36; 'object,': 0.36; 'to:addr:python-list': 0.38; 'fact': 0.38; 'pm,': 0.38; 'ability': 0.39; 'does': 0.39; 'delete': 0.39; 'to:addr:python.org': 0.39; 'received:org': 0.40; 'referred': 0.60; 'most': 0.60; 'name': 0.63; 'such': 0.63; 'happen': 0.63; 'refer': 0.63; 'different': 0.65; 'here': 0.66; 'fact,': 0.69; 'to,': 0.72; 'batchelder': 0.84; 'mean.': 0.91 X-Injected-Via-Gmane: http://gmane.org/ To: python-list@python.org From: Ned Batchelder Subject: Re: Pass variable by reference Date: Tue, 06 May 2014 17:27:18 -0400 References: <235C4BFA-9770-481A-9FCF-21C3F036769C@gmail.com> <5368681D.8070602@islandtraining.com> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Gmane-NNTP-Posting-Host: 18.189.31.53 User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:24.0) Gecko/20100101 Thunderbird/24.5.0 In-Reply-To: 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: 41 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1399411654 news.xs4all.nl 2940 [2001:888:2000:d::a6]:37470 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:70988 On 5/6/14 5:00 PM, Mark H Harris wrote: > On 5/6/14 3:31 PM, Ned Batchelder wrote: >> On 5/6/14 12:42 AM, Gary Herron wrote: >>> This gets confusing, but in fact the most accurate answer is that Python >>> does not have "variables", so there is no such thing as passing >>> "variables" by reference or any other method. Python *does* have names >>> bound to values, but that's a very different thing. If necessary, you >>> may consider that the *values* are passed by reference. >> >> This meme bugs me so much. Python has variables. They work differently >> than variables in C. In fact, they work by having names bound to values. > > What does the word "variable" mean. Think BASIC variables. You can set > them, you can reset them, you can delete them, you can change them. ... > because they are variable. > > Python has names bound to objects... some of which you may not change. > Once the name is bound to an object you may bind it to another object, > but you may not change it, nor may you change the object it is bound to > if the object is immutable. I quite like the definition I found on Wikipedia: "a symbolic name associated with a value and whose associated value may be changed." The word "change" here is ambiguous: it could mean mutating an existing value, or rebinding to another value. While I can't mutate immutable values, I can always rebind a Python name to another value. Python cannot do "pass variable by reference", but not because it lacks variables. What it lacks is the ability to refer to a variable. Names cannot be referred to, so there is no way to refer to a variable. This is definitely different than C. You are right about the comparison to BASIC: BASIC's variables can always be mutated. Python's variables cannot always be, because some of them have immutable values (or happen to at the moment, they can always be rebound!) -- Ned Batchelder, http://nedbatchelder.com