I am trying to solve the equation like this,
from sympy.solvers import solve
from sympy import Symbol
import math
x = Symbol('x')
A, B, C, D = 0.59912051, 0.64030348, 263.33721367, 387.92069617
print(solve((A * x) + (B * math.sqrt(x**3)) - (C * math.exp(-x / 50)) - D, x , numerical = True))...