Suppressing exceptions
Intermediate
+3 pts
Ever wanted to suppress an exception? Check out Python's contextlib module.
In this Bite you refactor sum_numbers which has some nested try/except statements. Use suppress to make this logic cleaner/ more readable. Have fun and keep calm and code in Python!