SciPy - Constants and Special Functions
What is the output of the following code snippet?
from scipy.special import jn values = [jn(0, x) for x in [0, 1, 2]] print([round(v, 3) for v in values])
