我们如何以编程方式获取Python中的异常列表?

时间:2019-04-13 20:16:00

标签: python exception

https://www.programiz.com/python-programming/exceptions

Python中有一个例外列表,我正在尝试列出例外名称的列表(或一组)。

我可以简单地对名称进行硬编码,但是有什么方法可以通过编程方式做到这一点?就像导入异常类并获取所有这些异常类型并将它们放入字符串列表一样?

1 个答案:

答案 0 :(得分:1)

要获取内置异常列表(不是用户定义的),可以执行以下操作:

// wait for document.addEventListener("DOMContentLoaded");

const myHeader = document.getElementById("MyHeader");
window.addEventListener("scroll", () => {
  const scrollPos = window.scrollY;
  if (scrollPos ... add your logic here) {
    myHeader.classList.add("scrollIsThing");  // this is the css class you'll target
  } else {
    myHeader.classList.remove("scrollIsThing");
  }
});