码迷,mamicode.com
首页 > 编程语言 > 详细

python 断言

时间:2018-12-28 19:26:15      阅读:154      评论:0      收藏:0      [点我收藏+]

标签:断言   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))

 

python 断言

标签:断言   bin   def   none   one   usr   play   nbsp   spl   

原文地址:https://www.cnblogs.com/sea-stream/p/10192113.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!