zoukankan      html  css  js  c++  java
  • exception handling of Python

    #exception handling of Python
    #how to do with the exception  just like java
    #raising exceptions
    #multiple exceptions
    #geniric exception
    #ignoring exception  how about pass
    
    
    #raising excpetion
    def readFile(filename):
        if filename.endswith('txt'):
            fh = open(filename)
            return fh.readinto()
        else: raise  ValueError('filename must be ended with txt')
    
    # ignoring exception  how about pass
    
    
    def ignorexce():
        counter = 0
        try:
           fh=open("file.txt")  #  here can give an example of file not exists ,and then the finally block will get counter equal 1  ,but now it will be 0
           print  'ignor'  # csn not printlog
        except:
            pass   # will not print anything of error log
            counter += 1
            print  "error" # print this error
        finally:  # the finally block
            print "all work was done by Ethan"
            print ('calculate the error times %s ' % counter)
    
    
    
    
    def main():
        try :
            fh = open("file.txt")
            x = 1/0
        except IOError as e:
            print ('this my log :', e ) # if not found open file will print this log error in cousolut
        except ZeroDivisionError as e :
            print("u r divising by zero : ," ,e)
        except:   # this is call generic exceptions ,this will catch everything ,this will it called generic
            print ("unkown reasons")
        else:
            print("this will not print any way")
        print "all done " # from here can know the excpetion will not break donw the process ,it will goes on
        try:
            for line in readFile("filename.tx1t") :print line   # file not ended with txt will get raising exceptions
        except IOError as e1:
            print ('big eror :',e1)
        except ValueError as e :
            print ('this message from raising exceptions : ',e)
    
        ignorexce()
    main()

  • 相关阅读:
    sql 事务
    GridView数据导入Excel
    图片对比度亮度调节函数
    在.NET(C#)中获取电脑名IP地址及当前用户名
    一个简单的存储过程
    通用海量数据库翻页
    Graphics
    sql 触发器
    DataTable中的数据导出Excel文件
    窗口渐变
  • 原文地址:https://www.cnblogs.com/TendToBigData/p/10501254.html
Copyright © 2011-2022 走看看