2548029 2548029 06-12-2022 Computers and Technology contestada What is the missing word? class TooWide(Exception): pass answer = input('How wide is it? ') width = float(answer) try: if width > 30: TooWide else: print("Have a nice trip!") except TooWide: print("Your luggage will not fit in the overhead bin.")