标签: python exception exception-handling
我有以下代码返回网页标题
def get_title(url): page = urllib2.urlopen(url) p = lxml.html.parse(page) return p.find(".//title").text
1)这是查找页面标题的最有效方法(即使在重定向后)
2)我如何解释可能发生的所有各种异常(即HTTPErrors,URLError等)。我不想只使用except Exception as e来收集。我希望有特定的例外
except Exception as e