SciPy - Constants and Special Functions
Find the mistake in this code snippet:
from scipy.special import erf import numpy as np x = np.array([1, 2, '3']) result = erf(x)
