实例
以下为单个异常的实例:
实例
#!/usr/bin/python
# -*- coding: UTF-8 -*-
# 定义函数
def temp_convert(var):
try:
returnint(var)
exceptValueError, Argument:
print"参数没有包含数字\n", Argument
# 调用函数
temp_convert("xyz")
以上程序执行结果如下:
$ python test.py
参数没有包含数字
invalid literal forint()withbase10:'xyz'