为了账号安全,请及时绑定邮箱和手机立即绑定

为什么这样还是错误啊

import math
def quadratic_equation(a, b, c):
    t = math.sqrt(b * b - 4 * a * c)
    m= (-b + t) / (2 * a)

     n=( -b - t )/ (2 * a)

     return m,n

print quadratic_equation(2, 3, 0)
print quadratic_equation(1, -6, 5)

正在回答

2 回答

import math
def quadratic_equation(a, b, c):
    t = math.sqrt(b * b - 4 * a * c)
    m= (-b + t) / (2 * a)

    n=( -b - t )/ (2 * a)

    return m,n

print quadratic_equation(2, 3, 0)
print quadratic_equation(1, -6, 5)

# n=( -b - t )/ (2 * a) 和return m,n 缩进多了一个空格

0 回复 有任何疑惑可以回复我~

注意缩进

0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消
初识Python
  • 参与学习       758621    人
  • 解答问题       8667    个

学python入门视频教程,让你快速入门并能编写简单的Python程序

进入课程

为什么这样还是错误啊

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信