Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

I am finding myself doing the following a bit too often:

attr = getattr(obj, 'attr', None)
if attr is not None:
    attr()
    # Do something, either attr(), or func(attr), or whatever
else:
    # Do something else

Is there a more pythonic way of writing that? Is this better? (At least not in performance, IMO.)

try:
    obj.attr() # or whatever
except AttributeError:
    # Do something else
question from:https://stackoverflow.com/questions/2428557/concise-way-to-getattr-and-use-it-if-not-none-in-python

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
177 views
Welcome To Ask or Share your Answers For Others

1 Answer

Since you are calling the attr, you could just do:

def default_action():
    # do something else

action = getattr(obj, 'attr', default_action)

action()

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share

548k questions

547k answers

4 comments

86.3k users

...