1 Star 0 Fork 0

86xiang/pythonhw

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
10.2.py 819 Bytes
一键复制 编辑 原始数据 按行查看 历史
86xiang 提交于 2019-12-27 00:42 . first commit
import math
class EquationException(Exception):
def __init__(self, eid, message): # 异常描述
self.eid = eid
self.message = message
class ExceptionDemo: # 业务逻辑
def computing(self, a, b, c):
print("called computing()");
deta = b * b - 4 * a * c
if deta < 0:
raise EquationException(101, "deta值小于零")
else:
x1 = (-b + math.sqrt(deta)) / (2 * a)
x2 = (-b - math.sqrt(deta)) / (2 * a)
print("一元二次方程的根是{},{}".format(x1, x2))
print("normal exit")
myobject = ExceptionDemo() # 功能测试
try:
myobject.computing(4, 4, -2)
myobject.computing(2, 3, 2)
except EquationException as e:
print("Exception caught,id:{},message:{}".format(e.eid, e.message))
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/xiang86/pythonhw.git
git@gitee.com:xiang86/pythonhw.git
xiang86
pythonhw
pythonhw
master

搜索帮助