Thank you Simon,

I was hoping there would be something as simple as that :-)

Rob

-----Original Message-----
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED]
On Behalf Of Simon Brunning
Sent: 11 March 2008 13:21
To: python-list@python.org
Subject: Re: Check For SELF Variable Existance

On Tue, Mar 11, 2008 at 11:00 AM, Robert Rawlins
<[EMAIL PROTECTED]> wrote:

> I want to be able to check if a class has a certain property in its 'self'
> scope, what's the best way to do this?

>>> class Spam(object):
...     def egg(self):
...         if hasattr(self, 'chips'): print 'got chips!'
...
>>> spam = Spam()
>>> spam.egg()
>>> spam.chips = 'beans'
>>> spam.egg()
got chips!

-- 
Cheers,
Simon B.
[EMAIL PROTECTED]
http://www.brunningonline.net/simon/blog/
-- 
http://mail.python.org/mailman/listinfo/python-list

-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to