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