---------------------------------------------------------------------------
AssertionError Traceback (most recent call last)
<ipython-input-10-2a430c3381f5> in <module>()
----> 1 print(temp_c_to_k(-1230))
<ipython-input-8-84c10e191fbc> in temp_c_to_k(temp_in_c)
2 '''Converts temperature from celsius to kelvin.
3 '''
----> 4 assert temp_in_c > -273.15, "Cannot have celsius below absolute zero!"
5 temp_in_k = temp_in_c + 273.15
6 assert temp_in_k > 0, "Cannot have negative Kelvin temperatures"
AssertionError: Cannot have celsius below absolute zero!