我是靠谱客的博主 虚心大炮,最近开发中收集的这篇文章主要介绍python中输入提示_python - 在python中显示输入提示 - 堆栈内存溢出,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

方程X ^ 2 + 2x + 3 = 0没有真正的解决方案。当您尝试取b * b-4 * a * c平方根时,会出现ValueError ,这是负数。 您应该以某种方式处理此错误情况。 例如,尝试/除外:

import math

def main():

print "This program finds the real solution to a quadratic"

print

a, b, c = input("Please enter the coefficients (a, b, c): ")

try:

discRoot = math.sqrt(b * b-4 * a * c)

except ValueError:

print "there is no real solution."

return

root1 = (-b + discRoot) / (2 * a)

root2 = (-b - discRoot) / (2 * a)

print

print "The solutions are: ", root1, root2

main()

或者您可以提前检测到判别为负:

import math

def main():

print "This program finds the real solution to a quadratic"

print

a, b, c = input("Please enter the coefficients (a, b, c): ")

discriminant = b * b-4 * a * c

if discriminant < 0:

print "there is no real solution."

return

discRoot = math.sqrt(discriminant)

root1 = (-b + discRoot) / (2 * a)

root2 = (-b - discRoot) / (2 * a)

print

print "The solutions are: ", root1, root2

main()

结果:

This program finds the real solution to a quadratic

Please enter the coefficients (a, b, c): 1,2,3

there is no real solution.

最后

以上就是虚心大炮为你收集整理的python中输入提示_python - 在python中显示输入提示 - 堆栈内存溢出的全部内容,希望文章能够帮你解决python中输入提示_python - 在python中显示输入提示 - 堆栈内存溢出所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(39)

评论列表共有 0 条评论

立即
投稿
返回
顶部