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

在这边浏览器运行正常,但是在pyCharm运行无结果,为什么

import math

def quadratic_equation(a, b, c):
    if(a!=0 and b*b-4*a*c>=0):
        x1= (-b+math.sqrt(b*b-4*a*c))/(2*a)
        x2=(-b-math.sqrt(b*b-4*a*c))/(2*a)
        return x1,x2
    
   
print quadratic_equation(2, 3, 0)
print quadratic_equation(1, -6, 5)

正在回答

1 回答

在pyCharm中调用函数输出的时候,需要给print添加括号,

import math


def quadratic_equation(a, b, c):
    if (a != 0 and b * b - 4 * a * c >= 0):
        x1 = (-b + math.sqrt(b * b - 4 * a * c)) / (2 * a)
        x2 = (-b - math.sqrt(b * b - 4 * a * c)) / (2 * a)
        return x1, x2


print(quadratic_equation(2, 3, 0))

print(quadratic_equation(1, -6, 5))


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

举报

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

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

进入课程

在这边浏览器运行正常,但是在pyCharm运行无结果,为什么

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