SciPy - Basics and Scientific Computing
Find the error in this code snippet:
from scipy import optimize result = optimize.minimize(lambda x: x**2, 2) print(result)
