hasattr with functions

1.4k Views Asked by At

How to check attr existence in function or method with hasattr (or without)? When I try to check it is False in any way:

>>> def f():
        at = True


>>> hasattr(f, 'at')
False
>>> hasattr(f(), 'at')
False
2

There are 2 best solutions below

1
On BEST ANSWER

Local variables are not attributes. You cannot use any *attr() to frob them.

0
On

It should work, look at below example.

>>> def f():
...    f.at = True
...
>>> hasattr(f, 'at')
False
>>> f()
>>> hasattr(f, 'at')
True