我对Python非常陌生,但是对学习非常感兴趣。对于单Python课程,我将创建一个将温度转换为摄氏度或华氏度的程序,并将转换结果显示为小数点后第一位。我的问题在于我的印刷线。
正如您在我的代码中看到的那样,我试图在连接时使用round()函数。尽管我试图将float转换为str(),但是在运行程序时却遇到以下错误。
对于下一行
,同样,对于我的elif bloc中的打印行。 对于理解和解决该问题的任何帮助,将不胜感激。
temp=float(input("Enter a temperature value to convert: "))
unit=str(input("Convert to Fahrenheit or Celsius? Enter f or c: "))
if unit=="c" or unit == "C":
degC=(temp)
temp=(1.8*temp)+32
print (round(str(temp), 1) + " degrees fahrenheit = " + str(degC) + " degrees Celsius. ")
elif unit=="f" or unit == "F":
degF=(temp)
temp=(temp-32)/1.8
print (round(str(temp), 1)+ " degrees celsius = " + str(degF) + " degrees Fahrenheit. ")
else:
print("you did not enter an f or c. Goodbye ")
我的输出应四舍五入到小数点后一位。
答案 0 :(得分:1)
请勿将temp
转换为字符串。将其保留为round
的浮点数。将round
之后的结果转换为str
进行串联
str(round(temp, 1))
答案 1 :(得分:0)
您的操作顺序错误。首先舍入,然后然后转换为字符串:
print (str(round(temp), 1)+ " degrees celsius = " ...
答案 2 :(得分:0)
除非这是使用舍入功能的课堂作业,否则我认为不需要舍入功能。
print ("%.1f degrees Celsius = %.1f degrees Fahrenheit" % (temp, degC))