python捕获所有异常怎么写 python中捕获线程抛出的异常
except (IDontLIkeYouException, YouAreBeingMeanException) as e:pass用逗号分割的方法只能在Python2.6和2.7里好使,在Python3中则无效;
except (IDontLIkeYouException, YouAreBeingMeanException) as e:pass用逗号分割的方法只能在Python2.6和2.7里好使,在Python3中则无效;