It's a difference in philosophy. The Pythonic design philosophy is EAFP: it is easier to ask for forgiveness than permission.
Easier to ask for forgiveness than permission. This common Python coding style assumes the existence of valid keys or attributes and catches exceptions if the assumption proves false. This clean and fast style is characterized by the presence of many
tryandexceptstatements. The technique contrasts with the LBYL style common to many other languages such as C...