12 hasattr()vstry-存在しない属性を処理するためのブロックを除く if hasattr(obj, 'attribute'): # do somthing vs try: # access obj.attribute except AttributeError, e: # deal with AttributeError どちらを優先する必要があり、その理由は何ですか? 85 python exception exception-handling attributes hasattr