Skip to content

运行时错误

当 Python 解释器无法执行某个语句,即使该语句在语法上是正确的,从而导致程序过早终止时,就会发生运行时错误。

一些运行时错误示例包括:

  • ImportError: 当 import 语句在加载模块或模块中的任何定义时遇到问题时引发。
  • IOError: 当解释器无法打开程序中指定的文件时引发。 (在 Python 3 中,通常是 FileNotFoundErrorPermissionError 等更具体的 OS 相关错误)
  • ZeroDivisionError: 当数字被零除或对零取模时引发。
  • NameError: 当遇到未定义的标识符时引发。
  • ValueError: 当参数或操作数的数据类型正确,但其值不合适时引发。
  • IndexError: 当在序列(字符串、列表、元组等)中提供的索引超出范围时引发。
  • KeyError: 当在字典的现有键集合中找不到某个键时引发。
  • TypeError: 当对不兼容的类型执行操作时引发。
  • IndentationError: 当语句或代码块的缩进不正确时引发。

运行时错误示例

ZeroDivisionError

python
n = 100
d = 0
print(n/d)
python
Traceback (most recent call last):
  File "/Users/name/Desktop/test.py", line 3, in <module>
    print(n/d)
ZeroDivisionError: division by zero

NameError

python
n = 100
print(d)
python
Traceback (most recent call last):
  File "/Users/name/Desktop/test.py", line 2, in <module>
    print(d)
NameError: name 'd' is not defined

KeyError

python
d = {1: "1st", 2: "2nd"}
print(d[3])
python
Traceback (most recent call last):
  File "/Users/name/Desktop/test.py", line 2, in <module>
    print(d[3])
KeyError: 3

TypeError

python
n = 1
s = "a"
tot = n + s
python
Traceback (most recent call last):
  File "/Users/name/Desktop/test.py", line 3, in <module>
    tot = n + s
TypeError: unsupported operand type(s) for +: 'int' and 'str'