Can one single except: command catch many exceptions?
Yes,just put all exception in following way: except (IOError, KeyError), error:
Re: Can one single except: command catch many exceptions?
Yes,just put all exception in following way:
except (IOError, KeyError), error: