执行importres语句,则会出现()异常。
A: ImportError
B: IndexError
C: TypeError
D: AttributeError
A: ImportError
B: IndexError
C: TypeError
D: AttributeError
举一反三
- 缩进是Python最具特色的特点,当缩进错误会引发()异常。 A: IndentationError B: IndexError C: TypeError D: AttributeError
- 下列的选项中哪个是属于Python的导入模块出错的异常。 A: Exception;StandardError B: ImportError C: AttributeError
- Python变量或函数没有定义就使用和变量名或函数名拼写错误都会导致( )异常。 A: SyntaxError B: TypeError C: AttributeError D: NameError
- 一个except语句块可以处理多个异常吗?() A: 是,比如TypeError,SyntaxError[,…] B: 是,比如[TypeError,SyntaxError] C: 是,比如(TypeError,ValueError) D: 不能
- What kind of error will be given by running the next code?>>> a = 3print(a ** b)() A: IndexError B: ValueError C: TypeError D: NameError