Python Exception

来源:互联网 发布:cyberduck mac 编辑:程序博客网 时间:2024/05/22 03:15


1 异常的处理

#!/usr/bin/python3

# exceptions.py by Bill Weinman [http://bw.org/]
# This is an exercise file from Python 3 Essential Training on lynda.com
# Copyright 2010 The BearHeart Gorup, LLC


def main():
    try:
       fh = open('sslines.txt')  #当文件不存在时
    except IOError as e:
        print("Could not open the file.come back tommorow",e)
    else:
         for line in fh: print(line.strip())


if __name__ == "__main__": main()



2 抛出异常


#!/usr/bin/python3
# exceptions.py by Bill Weinman [http://bw.org/]
# This is an exercise file from Python 3 Essential Training on lynda.com
# Copyright 2010 The BearHeart Gorup, LLC


def main():
    try:    
        for line in readFile("han.doc"):
            print(line.strip())
    except IOError: print('file does not exist')
    
    except ValueError as e:print(e)
    
def  readFile(filename):
     if filename.endswith('.txt'):
         fh=open(filename)
         return fh.readlines()
     else:
          raise ValueError('File name must end with .txt')
    


if __name__ == "__main__": main()



0 0
原创粉丝点击