首页上一页 1 下一页尾页 1 条记录 1/1页
keyword can not be an expression
发表在Python图书答疑
2020-04-16
《Python从入门到项目实践》第11章 用函数实现模块化程序设计
是否精华
是
否
版块置顶:
是
否
运行时出现跟标题一样的语句
height=float(input("请输入您的身高: 1.70"))
weight=float(input("请输入您的体重: 60"))
bmi=weight/(weight*weight)
if bmi<18.5:
print("您的BMI指数为:"=str(bmi))
print("体重过轻~@~")
if bmi>=18.5 and bmi<24.9:
print("您的BMI指数为:"=str(bmi))
print("正常范围,注意保持(-_-)")
if bmi>=24.9 and bmi<29.9:
print("您的BMI指数为:"=str(bmi))
print("体重过重@_@")
if bmi>29.9:
print("您的BMI指数为:"=str(bmi))
print("肥胖^@_@^")
于2020-04-16 09:22:46编辑