Path: csiph.com!x330-a1.tempe.blueboxinc.net!usenet.pasdenom.info!aioe.org!feeder.news-service.com!newsfeed.xs4all.nl!newsfeed5.news.xs4all.nl!xs4all!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.001 X-Spam-Evidence: '*H*': 1.00; '*S*': 0.00; 'python,': 0.01; 'anyway': 0.03; 'arguments': 0.05; 'something,': 0.07; 'called.': 0.09; 'foo': 0.09; 'none:': 0.09; 'question:': 0.09; 'subject:parameters': 0.09; 'wrote:': 0.15; 'len': 0.16; 'parameter,': 0.16; 'received:192.168.1.40': 0.16; 'this:': 0.16; 'def': 0.16; 'java': 0.21; 'header:In-Reply-To:1': 0.22; "i'm": 0.27; 'depends': 0.28; 'object': 0.30; 'class': 0.31; 'programming,': 0.32; 'to:addr:python-list': 0.34; 'header:User- Agent:1': 0.34; '...': 0.34; 'probably': 0.35; 'guys': 0.36; 'some': 0.37; 'received:192': 0.38; 'subject:: ': 0.38; 'something': 0.38; 'think': 0.38; 'received:192.168.1': 0.39; 'to:addr:python.org': 0.39; "i'd": 0.40; 'received:62': 0.67; 'from:addr:t': 0.84; 'notice.': 0.96 Date: Fri, 22 Jul 2011 13:33:00 +0200 From: Thomas Jollans User-Agent: Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.18) Gecko/20110626 Iceowl/1.0b2 Icedove/3.1.11 MIME-Version: 1.0 To: python-list@python.org Subject: Re: Use self.vars in class.method(parameters, self.vars) References: <0ddc2626-7b99-46ee-9974-87439ae09f1e@e40g2000yqn.googlegroups.com> In-Reply-To: <0ddc2626-7b99-46ee-9974-87439ae09f1e@e40g2000yqn.googlegroups.com> X-Enigmail-Version: 1.1.2 OpenPGP: id=5C8691ED Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit 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: 30 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1311334382 news.xs4all.nl 23901 [2001:888:2000:d::a6]:45668 X-Complaints-To: abuse@xs4all.nl Xref: x330-a1.tempe.blueboxinc.net comp.lang.python:10099 On 22/07/11 13:12, caccolangrifata wrote: > I'm very very new with python, and I have some experience with java > programming, so probably you guys will notice. > Anyway this is my question: > I'd like to use class scope vars in method parameter, something like > that > > class foo(object): > > __init__(self, len = 9): > self.__myvar = len > > def foo2(self, len = self_myvar): > while i < len: > dosomething > I think what you want to do is this: class foo (object): def __init__(self, len=9): self._len = len def foo2(self, len=None): if len is None: len = self._len # ... Default arguments are for when you want to use exactly the same object each time the function/method is called. If you the object you want to use depends on something, you can use this arg=None idiom.