SciPy - Advanced Optimization
What will be the output of this SciPy code snippet?
from scipy.optimize import minimize result = minimize(lambda x: (x + 5)**2, 2) print(round(result.x[0], 2))
