SciPy - Constants and Special Functions
What will be the output of this code snippet?
from scipy.constants import c, planck wavelength = 400e-9 energy = planck * c / wavelength print(round(energy, 2))
