码迷,mamicode.com
首页 > 编程语言 > 详细

python 获取exception 名字

时间:2018-08-22 12:43:46      阅读:176      评论:0      收藏:0      [点我收藏+]

标签:inpu   error   indexer   cep   exce   username   变量   style   用不了   

def func():
    list = []
    usr = input(username:)
    pwd = input(password:)
    try:
        list[4] # 这个是调用不了的,因为列表没有元素
    except Exception as e:
        print(e.__class__)
func()

username:11
password:1
<class ‘IndexError‘>

def func():
    list = []
    usr = input(username:)
    pwd = input(password:)
    try:
        name # 这个变量是没法收到的
    except Exception as e:
        print(e.__class__)
func()

username:1
password:1
<class ‘NameError‘>

python 获取exception 名字

标签:inpu   error   indexer   cep   exce   username   变量   style   用不了   

原文地址:https://www.cnblogs.com/apollo1616/p/9516879.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!