Ich weiß, dass ich tun kann: try: # do something that may fail except: # do this if ANYTHING goes wrong Ich kann das auch machen: try: # do something that may fail except IDontLikeYouException: # say please except YouAreTooShortException: # stand on a ladder Aber wenn ich dasselbe in...