Answers for "python class property get by name"

2

python class get attribute by name

>>> class c:
        pass
o = c()
>>> setattr(o, "foo", "bar")
>>> o.foo
'bar'
>>> getattr(o, "foo")
'bar'
Posted by: Guest on July-01-2020

Python Answers by Framework

Browse Popular Code Answers by Language