导语:
本文主要介绍了关于python异常模块的整理的相关知识,包括python time模块,以及python查看所有异常类这些编程知识,希望对大家有参考作用。
1、OSError异常
OSError是操作系统相关异常。
FileNotFoundError:[Error 2] No such file or directory: 'abc.txt'
2、IndexError异常
IndexError 异常是在访问序列元素时下标索引超出取值范围时引发的异常。
IndexError: list index out of range
3、ValueError异常
传入无效的参数值时会引发 ValueError 异常。
>>> i = 'QWE
>>> print(5 / int(i))
Traceback(most recent call last):
File"<pyshell#22>", line1, in <module>
print(5 / int(i))
ValueError: invalid literal for int() with base 10: 'QWE'
以上就是Python快捷代码片段的使用,希望
能对大家有所帮助。
更多Python学习指路:
本文为原创文章,版权归知行编程网所有,欢迎分享本文,转载请保留出处!
你可能也喜欢
- ♥ python是怎么划分的08/13
- ♥ python中time.localtime的使用12/16
- ♥ Python初学者的urlopen()详解10/06
- ♥ zip() 函数如何遍历 python 中的多个列表?11/17
- ♥ 如何找到与python的交集12/25
- ♥ 如何在pycharm中切换python2.7版本08/31
内容反馈