Case Study
Explore how to detect and handle exceptions from data errors and processing bugs in Python applications. Understand user roles, input types, and strategies to alert users and prevent unauthorized actions for robust software.
We'll cover the following...
We'll cover the following...
This case study will look at some ways that we can find—and help the users fix—potential problems with the data or the application’s computations. Both the data and the processing are possible sources of exceptional behavior. They aren’t, however, equivalent; we can compare the two as follows:
Data
Exceptional data is the most common source of problems. The data may not follow the syntax rules and have an invalid physical format. Other, more ...