effective python 90 specific ways to write better
andles exceptions if they occur, rather than preemptively checking conditions. Example: ```python try: value = my_dict[key] except KeyError: value = default_value ``` vs. ```python if key in my_dict: value = my_dict[key] else: value = default_value ``