标签:断言 bin def none one usr play nbsp spl
#!/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))
标签:断言 bin def none one usr play nbsp spl
原文地址:https://www.cnblogs.com/sea-stream/p/10192113.html