python try except exception_python try except返回异常的信息字符串代码实例

问题

try:

int("x")

except Exception as e:

'''异常的父类,可以捕获所有的异常'''

print(e)

# e变量是Exception类型的实例,支持__str__()方法,可以直接打印。

invalid literal for int() with base 10: 'x'

try:

int("x")

except Exception as e:

'''异常的父类,可以捕获所有的异常'''

print(e.args)

# e变量有个属性是.args,它是错误信息的元组

("invalid literal for int() with base 10: 'x'",)try: datetime(2017,2,30)except ValueError as e: print(e) day is out of range for monthtry: datetime(22017,2,30)except ValueError as e: print(e) year 22017 is out of rangetry: datetime(2017,22,30)except ValueError as e: print(e) month must be in 1..12e = Nonetry: datetime(2017,22,30)except ValueError as e: print(e) month must be in 1..12e

# e这个变量在异常过程结束后即被释放,再调用也无效

Traceback (most recent call last): File "", line 1, in NameError: name 'e' is not defined

errarg = None

try:

datetime(2017,22,30)

except ValueError as errarg:

print(errarg)

month must be in 1..12

errarg

Traceback (most recent call last):

File "", line 1, in

NameError: name 'errarg' is not defined

try:

datetime(2017,22,30)

except ValueError as errarg:

print(errarg.args)

# ValueError.args 返回元组

('month must be in 1..12',)

message = None

try:

datetime(2017,22,30)

except ValueError as errarg:

print(errarg.args)

message = errarg.args

('month must be in 1..12',)

message

('month must be in 1..12',)

try:

datetime(2017,22,30)

except ValueError as errarg:

print(errarg.args)

message = errarg

('month must be in 1..12',)

message

ValueError('month must be in 1..12',)

str(message)

'month must be in 1..12'

分析异常信息,并根据异常信息的提示做出相应处理:

try:

y = 2017

m = 22

d = 30

datetime(y,m,d)

except ValueError as errarg:

print(errarg.args)

message = errarg

m = re.search(u"month", str(message))

if m:

dt = datetime(y,1,d)

('month must be in 1..12',)

dt

datetime.datetime(2017, 1, 30, 0, 0)

甚至可以再except中进行递归调用:

def validatedate(y, mo, d):

dt = None

try:

dt = datetime(y, mo, d)

except ValueError as e:

print(e.args)

print(str(y)+str(mo)+str(d))

message = e

ma = re.search(u"^(year)|(month)|(day)", str(message))

ymd = ma.groups()

if ymd[0]:

dt = validatedate(datetime.now().year, mo, d)

if ymd[1]:

dt = validatedate(y, datetime.now().month, d)

if ymd[2]:

dt = validatedate(y, mo, datetime.now().day)

finally:

return dt

validatedate(20199, 16, 33)

('year 20199 is out of range',)

('month must be in 1..12',)

('day is out of range for month',)

datetime.datetime(2018, 4, 20, 0, 0)

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持脚本之家。

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值