推薦可使用 math 函式庫
t = b**2 - 4*a*c #判斷無解
公式解
if t>=0:
x1 = (-b + math.sqrt(t)) / (2*a)
x2 = (-b - math.sqrt(t)) / (2*a)