Discuss / Python / answer

answer

Topic source

NotFatCat

#1 Created at ... [Delete] [Delete and Lock User]
    result1=(-b+math.sqrt(b*b-4*a*c))/(2*a)
    result2=(-b-math.sqrt(b*b-4*a*c))/(2*a)
    return result1,result2

  • 1

Reply