Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

python class get attribute by name

>>> class c:
        pass
o = c()
>>> setattr(o, "foo", "bar")
>>> o.foo
'bar'
>>> getattr(o, "foo")
'bar'
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #python #class #attribute
ADD COMMENT
Topic
Name
4+3 =