当我在http://www.pyschools.com/quiz/view_question/s2-q1中执行此代码时。它给出了答案的错误......请帮助 问题是:
Write a function to convert temperature from Celsius to Fahrenheit scale.
oC to oF Conversion: Multipy by 9, then divide by 5, then add 32.
Examples
>>> Cel2Fah(28.0)
'82.40'
>>> Cel2Fah(0.00)
'32.00'
# Note: Return a string of 2 decimal places.
def Cel2Fah(temp):
x = 9.00
y = 5.00
z = 32.00
a = temp * x
a = a / y
a = a + z
return(a)
答案 0 :(得分:7)
在顶部它说:
# Note: Return a string of 2 decimal places.
您没有返回字符串。您将返回float
类型的值。
由于这看起来像家庭作业,我会让你弄清楚如何解决这个问题(提示:使用字符串格式化操作符)。
答案 1 :(得分:4)
请改回来。
return '%.2f' %a
答案 2 :(得分:1)
将您的return语句更改为
return '%.2f' %a
答案 3 :(得分:0)
语法上没有任何错误。如果您将数字作为参数传递,它应该有效。如果你传递的不是数字,它将无效。
答案 4 :(得分:-1)
def Cel2Fah(temp):
cel=(round((((temp*9)/5) +32),2))
return '%.2f' %cel
print Cel2Fah(36.9)
print Cel2Fah(29.0)