Python3 Assert 语句 Python3 os 模块 Write 方法 Python3 Try Else 语句 Python3 Assert 语句 #!/usr/bin/python3 def KelvinToFahrenheit(Temperature): assert (Temperature >= 0),"Colder than absolute zero!" return ((Temperature-273)*1.8)+32 print (KelvinToFahrenheit(273)) print (int(KelvinToFahrenheit(505.78))) print (KelvinToFahrenheit(-5)) Python3 os 模块 Write 方法 Python3 Try Else 语句