将浮点数四舍五入为一位小数(具体问题)

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


正如您在我的代码中看到的,我尝试在连接时使用 round() 函数。虽然我试图将浮点数转换为 str(),但当我运行我的程序时,出现以下错误。


类型错误:类型 str 未定义圆形方法

对于以下行


打印 (round(str(temp), 1)+ " 摄氏度 = " + str(degF) + " 华氏度。")

和我的 elif 集团中的打印线类似。任何帮助理解和解决问题将不胜感激。


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 ")

我的输出应该四舍五入到第一个小数位。


泛舟湖上清波郎朗
浏览 160回答 3
3回答

一只斗牛犬

除非这是使用round函数的课堂作业,否则我认为不需要round函数。print ("%.1f degrees Celsius = %.1f degrees Fahrenheit" % (temp, degC))

Helenr

不要转换temp为字符串。将其保留为round. 将结果 afterround变成strfor 连接str(round(temp, 1))

萧十郎

您的操作顺序错误。先舍入,再转换为字符串:print (str(round(temp), 1)+ " degrees celsius = " ...
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Python