File "/data/e269c0555c38ce484684f71b1fd1899d", line 5, in <module> print("BMI数值为:{0:.2f}".fromat(BMI)) AttributeError: 'str' object has no attribute 'fromat'
时间: 2024-03-22 16:37:21 浏览: 57
assets_e4b6f25e1c38b56b464c56c31c1a361d.mp4
这个错误是因为你在字符串中使用了 .fromat() 方法,但是方法名有误,正确的方法名是 .format()。请在第5行代码中将 "fromat" 改为 "format",即:
```
print("BMI数值为:{0:.2f}".format(BMI))
```
这样就可以正确地将 BMI 变量的值插入到字符串中,并且保留两位小数。
阅读全文