12
hasattr () vs try-eccetto blocco per gestire attributi inesistenti
if hasattr(obj, 'attribute'): # do somthing vs try: # access obj.attribute except AttributeError, e: # deal with AttributeError Quale dovrebbe essere preferito e perché?