python有两种错误:语法错误和异常 语法错误 python的语法错误或者称之为解析错,经常碰到,如下 while True print('Hello world') File "stdin", line 1, in ? while True print('Hello world') ^ SyntaxError: inval
python有两种错误:语法错误和异常
语法错误
python的语法错误或者称之为解析错,经常碰到,如下
>>> while True print('Hello world')
File "<stdin>", line 1, in ?
while True print('Hello world')
^
SyntaxError: invalid syntax
这个例子中,函数 print() 被检查到有错误,是它前面缺少了一个冒号(:)
语法分析器指出了出错的一行,并且在最先找到的错误的位置标记了一个小小的箭头
异常
即便python程序的语法是正确的,在运行它的时候,也有可能发生错误运行期检测到的错误被称为异常
大多数的异常都不会被程序处理
python使用 raise 语句抛出一个指定的异常
test.py
#!/usr/bin/python3
s=input("input your age:")
if s=="":
raise Exception("age 不能为空")
try:
i=int(s);
except Exception as err:
print(err)
finally:
print("bye")
执行结果
[root@mail pythonCode]# python3 test.py
input your age:
Traceback (most recent call last):
File "test.py", line 4, in <module>
raise Exception("age 不能为空")
Exception: age 不能为空