Can one single except: command catch many exceptions?

Question

Can one single except: command catch many exceptions?

Re: Can one single except: command catch many exceptions?

Yes,just put all exception in following way:
except (IOError, KeyError), error: