SciPy - Constants and Special Functions
The following code is intended to convert 100 degrees Celsius to Kelvin using
scipy.constants. What is the error?
from scipy.constants import zero_Celsius celsius = 100 kelvin = celsius * zero_Celsius print(kelvin)
