I have this equation that I want to solve in python but I'm not sure if I'm following the right procedure, the equation is ((e^x)* a + b=0) where a and b are constants this my code the output is [-0.916290731874155 + 3.14159265358979*I] which I'm not sure what it means
import sympy as sp
T_final= 70.0
T_intial= 75.0
T_diff= T_final - T_intial
T_now= 72.0
T_d= T_final - T_now
x = Symbol('x')
z= (sp.exp(x)* T_diff)+ T_d
sp.solve(z, x)