1# test exception matching against a tuple 2 3try: 4 fail 5except (Exception,): 6 print('except 1') 7 8try: 9 fail 10except (Exception, Exception): 11 print('except 2') 12 13try: 14 fail 15except (TypeError, NameError): 16 print('except 3') 17 18try: 19 fail 20except (TypeError, ValueError, Exception): 21 print('except 4') 22