有没有人有更简洁的方法来处理Python中的异常?
目前我经常在我的代码中使用此模式
try:
#some code that throws an exception
except:
pass #because I don't really need to handle anything in this case
有没有办法只是为了捕捉异常而不这样做?有什么建议?
在这种特定情况下,我使用的是selenium,并且根据是否存在页面元素,我需要执行一些代码。如果它不存在,则抛出异常但代码可能会继续。我只是看到是否有更清洁的方法来处理这个问题:)