SciPy - Basics and Scientific Computing
What does this code print?
from scipy import optimize f = lambda x: (x - 3)**2 result = optimize.minimize(f, 0) print(round(result.x[0], 2))
