5
Bir satırda birden fazla istisna yakalama (blok hariç)
Yapabileceğimi biliyorum: try: # do something that may fail except: # do this if ANYTHING goes wrong Bunu da yapabilirim: try: # do something that may fail except IDontLikeYouException: # say please except YouAreTooShortException: # stand on a ladder Ama aynı şeyi iki farklı istisna içinde yapmak istersem, şu anda …