码迷,mamicode.com
首页 > 其他好文 > 详细

异常处理

时间:2018-05-12 12:41:43      阅读:104      评论:0      收藏:0      [点我收藏+]

标签:代码   bin   异常处理   出错   错误   print   env   __str__   input   

#! /usr/bin/env python
# -*- coding:utf-8 -*-


ss = input("输入:")
try:
     num = int(ss)
     print(num)
except Exception as e:
    print("类型转换失败")

 

# 1.异常捕捉代码结构
# try:
# 主代码。。。
#except Exception as e:
# print("www")
#其他代码...
#finally:
# 最后执行的代码。。。


# 2.主动触发异常
# raise Exception("...") Exception 内部用__str__方法主动封装错误信息
try:
    print(111)
    raise Exception("出错")
except Exception as e:
    print(e)

  

 

异常处理

标签:代码   bin   异常处理   出错   错误   print   env   __str__   input   

原文地址:https://www.cnblogs.com/wuxinyan/p/9028198.html

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