🐍 python has attribute

python

fukurou

the supreme coder
ADMIN
Python:
class Example:
    def __init__(self):
        self.some_attr = 42

obj = Example()

# Check if 'some_attr' exists as an attribute in obj
print(hasattr(obj, 'some_attr'))  # Output: True

this could be nice for the add skill aware brain method.
@owly shieet and asses

Python:
if hasattr(obj, 'some_attr') and isinstance(getattr(obj, 'some_attr'), int):
    print("some_attr exists and is an integer")
 
Top