摘要: 1 #TemperatureConversion 2 3 def c2f(cel): 4 fah = cel * 1.8 + 32 5 return fah 6 7 def f2c(fah): 8 cel = (fah - 32) / 1.8 9 return cel 10 11 #cals 12 13 import Temper... 阅读全文
posted @ 2017-03-17 08:23 道高一尺 阅读(250) 评论(0) 推荐(0)