SciPy - Basics and Scientific Computing
What will be the output of this code snippet?
import numpy as np from scipy import integrate result = integrate.quad(lambda x: np.exp(-x**2), 0, 1) print(round(result[0], 4))
