SciPy - Constants and Special Functions
What will be the output of this code?
from scipy.constants import milli grams = 2500 kilograms = grams * milli print(kilograms)
