Space is unpredictable. If a sensor fails or a file is missing, our program must not crash.
try/except blocks to catch errors.logzero (or logging) to record what happens.finally.If something goes wrong on the ISS, we can't see the screen. The log file is our only way to know why an experiment failed.
value = 10 / 0 line to see how the program handles a crash gracefully.