博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
[Python] Handle Exceptions to prevent crashes in Python
阅读量:6233 次
发布时间:2019-06-22

本文共 641 字,大约阅读时间需要 2 分钟。

Exceptions cause your application to crash. Handling them allows you to recover gracefully and keep your application running. Learn how to handle exceptions, find what exceptions you should be handling, and exit gracefully in this lesson. You will also learn how you should not handle exceptions and when it is better to let your application crash rather than swallowing an exception.

 

import sys# print(int(sys.argv[1]) / int(sys.argv[2]))try:    print(int(sys.argv[1]) / int(sys.argv[2]))except ValueError as e:    print('You must enter a valid number')except ZeroDivisionError as e:    print("You can't divide by zero")

 

Built in:

Requests: 

转载地址:http://coqna.baihongyu.com/

你可能感兴趣的文章
管理或技术
查看>>
Python os.path和shutil模块实现文件复制、删除
查看>>
HBase的JAVA API操作详解
查看>>
烂泥:dnsmasq搭建简易DNS服务器
查看>>
设置APP默认以横竖屏启动
查看>>
OLEDB Excel 与C# 的数据流通方法
查看>>
Rafy 领域实体框架演示(3) - 快速使用 C/S 架构部署
查看>>
给知识分分等级
查看>>
权限管理越来越复杂
查看>>
C# 多线程窗体的创建
查看>>
开始编写Golang代码
查看>>
Linux 小知识翻译 - 「协议(protocol)」
查看>>
在JavaScript中对HTML进行反转义
查看>>
postgresql系统函数
查看>>
Javascript 中的变量作用域问题
查看>>
chrome浏览器关闭标签页面
查看>>
创建注记图层要素
查看>>
C++11 正则表达式——基础知识介绍
查看>>
jquery 日期+时间 date & time 插件
查看>>
【读书笔记《Android游戏编程之从零开始》】8.Android 游戏开发常用的系统控件(系统控件常见问题)...
查看>>