python异常

简介:                                                                                           python下异常如何处理: ...

                 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

python下异常如何处理:

  1 #encoding=utf-8
  2 
  3 """
  4 python遇到异常,程序直接运行
  5 try:
  6     "判断有可能抛出异常的代码"
  7     print "haha"
  8 except:
  9     "异常下运行的代码"
 10 else:
 11     "运行没有异常时候的逻辑"
 12 finally:
 13     "不管try判断如何,该代码总会执行"
 14 
 15 合理利用异常:
 16     1、不得不用的地方采用异常;
 17     2、正确使用异常:需要对异常进行捕获
 18      比如:except IOError:   
 19 
 20 """
 21 
 22 a = [1, 2, 3, 4, 5, 6]
 23 
 24 print a[4]
 25 
 26 try:
 27     print a[6]
 28 except:
 29     print u'哈哈'
 30 
 31 print "继续可以到这里"
 32 
 33 
 34 try:
 35     print a[6]
 36 except:
 37     print "huhu"
 38 else:
 39     print "hoho"
 40 finally:
 41     print "hehe"
 42     
 43     
 44 import urllib
 45 sth_url = "http://wsdfsdf"
 46 
 47 try:
 48     d = urllib.urlopen(sth_url)
 49 except:
 50     print "出错了"
 51 else:
 52     content = d.read()
 53 finally:
 54     pass
 55     #d.close()
 56     
 57 """
 58 异常的note:
 59     1、一个try对应一个except
 60     2、使用python内置异常,来对应自身情况;
 61     IOErro, IndexError
 62     3、捕获异常的办法:
 63         import logging
 64         logger = logging.getLogger()
 65         #logfile = 'excetion_demo.log'    #log文件名
 66         hdlr = logging.FileHandler('/tmp/sendlog.txt')
 67         formatter = logging.Formatter('%(asctime)s %(levelname)s %(message)s')
 68         hdlr.setFormatter(formatter)
 69         logger.addHandler(hdlr)  #logging绑定
 70         logger.setLevel(logging.NOTSET)
 71         
 72                
 73         import sys, logging
 74         try:
 75             d = urllib.urlopen("www.kdkdk.com")
 76         except:
 77             exc = sys.exc_info()
 78             loggin.debug(exc[1]
 79             print exc[1]
 80             print exc
 81     4、断言,assert
 82         assert 表达式,"出错后抛出message"
 83         assert 1>4,  "expression Error"
 84     先断言绝对不能发生的错误,然后在处理异常;
 85 """
 86 
 87 """
 88 with用法:自动回收垃圾
 89 #进入时,调用对象的__enter__
 90 #退出时,调用对象的__exit__函数
 91 
 92 d = open('a', 'r')
 93 d.read()
 94 d.close()
 95 
 96 with open('a', 'r')  as d:
 97     content = a.read()
 98 """
 99 
100 #with示例:
101 class sth(object):
102     def __init__(self, xixi):
103         self.a  = xixi
104         
105     def __enter__(self):
106         print u'哈哈, 进来了'
107         return self.a
108     
109     def __exit__(self, type, value, traceback):
110         print u'哈哈,出去了'
111 
112 with sth("gg") as s:
113     print s         #s为__enter__返回值
114 
115 """
116 定义自己的异常类
117 """
118 
119 class myException(Exception):
120     def __init__(self, error, msg):
121         self.args = (error, msg)
122         self.error = error
123         self.msg  = msg
124 
125 try:
126     raise myException(1, "my exception")
127 except Exception as e:
128     print str(e)

 

相关文章
|
8天前
|
存储 索引 Python
|
9天前
|
Python
Python生成器、装饰器、异常
【10月更文挑战第15天】
|
5月前
|
Python
Python基础教程(第3版)中文版 第8章 异常(笔记)
Python基础教程(第3版)中文版 第8章 异常(笔记)
|
4月前
|
Unix API Python
【Python】已完美解决:(Python3.8异常)AttributeError: module ‘time‘ has no attribute ‘clock‘
【Python】已完美解决:(Python3.8异常)AttributeError: module ‘time‘ has no attribute ‘clock‘
84 0
|
20天前
|
设计模式 安全 JavaScript
Python学习八:面向对象编程(下):异常、私有等
这篇文章详细介绍了Python面向对象编程中的私有属性、私有方法、异常处理及动态添加属性和方法等关键概念。
17 1
|
2月前
|
人工智能 数据可视化 搜索推荐
Python异常模块与包
Python异常模块与包
|
27天前
|
开发者 索引 Python
Python常见的异常总结
Python 中的异常是一个非常广泛的主题,因为它包含许多内置的异常类型,这些类型可以处理各种运行时错误。
18 0
|
4月前
|
数据采集 存储 Java
如何让Python爬虫在遇到异常时继续运行
构建健壮Python爬虫涉及异常处理、代理IP和多线程。通过try/except捕获异常,保证程序在遇到问题时能继续运行。使用代理IP(如亿牛云)防止被目标网站封锁,多线程提升抓取效率。示例代码展示了如何配置代理,设置User-Agent,以及使用SQLite存储数据。通过`fetch_url`函数和`ThreadPoolExecutor`实现抓取与重试机制。
如何让Python爬虫在遇到异常时继续运行
|
4月前
|
机器学习/深度学习 运维 监控
使用Python实现深度学习模型:智能安防监控与异常检测
【7月更文挑战第26天】 使用Python实现深度学习模型:智能安防监控与异常检测
60 6
|
3月前
|
API C++ Python
【Azure 应用服务】Python fastapi Function在Azure中遇见AttributeError异常(AttributeError: 'AsgiMiddleware' object has no attribute 'handle_async')
【Azure 应用服务】Python fastapi Function在Azure中遇见AttributeError异常(AttributeError: 'AsgiMiddleware' object has no attribute 'handle_async')