For dictionary we can use .get
method. What about a class's attribute and provide a default value?
You can use hasattr
and getattr
.
For example:
hasattr(foo, 'bar')
would return True
if foo
has an attribute named bar
, otherwise False
and
getattr(foo, 'bar', 'quux')
would return foo.bar
if it exists, otherwise defaults to quux
.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With