Je sais que je peux faire: try: # do something that may fail except: # do this if ANYTHING goes wrong Je peux aussi faire ça: try: # do something that may fail except IDontLikeYouException: # say please except YouAreTooShortException: # stand on a ladder Mais si je veux faire la même chose à...