Intro to Programming (Python) Assignment 07 Knowledge Document I. Overview A. The “try/except” part of this assignment seemed pretty straight forward. I immediately thought of the previous arithmetic script where I tested the divisor for zero. For this assignment, instead of testing for zero I used try/except where I wrote the except clause as “ except ZeroDivisionError:” The result was as follows: # # Flag zero divide exception try: print("\nN1/N2 = ",N1/N2) except ZeroDivisionError: print("\nN1/N2 is indeterminate since N2 = 0") B. The Pickling part of this assignment was more challenging. I wanted to make the resulting script more interesting than simply save and restore. So, I decided to create a list of dictionaries, where the key for each dictionary was a 4 character aircraft type code and the value was a list containing the wing span and the max landing weight of the aircraft. This data structure could easily be set up to include...