将浮点数舍入到小数点后(特定问题)

时间:2019-02-08 01:57:36

标签: python python-3.x

我对Python非常陌生,但是对学习非常感兴趣。对于单Python课程,我将创建一个将温度转换为摄氏度或华氏度的程序,并将转换结果显示为小数点后第一位。我的问题在于我的印刷线。

正如您在我的代码中看到的那样,我试图在连接时使用round()函数。尽管我试图将float转换为str(),但是在运行程序时却遇到以下错误。

TypeError:类型str未定义 round 方法

对于下一行

print(round(str(temp),1)+“摄氏度=” + str(degF)+“华氏度。”

,同样,对于我的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 ")

我的输出应四舍五入到小数点后一位。

3 个答案:

答案 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))