input 函数的输入和输出

Posted liutao-15342410743

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了input 函数的输入和输出相关的知识,希望对你有一定的参考价值。

 

height = float(input("你的身高:"))
weight = float(input("你的体重:"))
bmi = weight/(height*height)
print("你的bmi指数:")


if bmi <18.5:
print(体重过轻)
if bmi > 29.9:
print(肥胖)
if bmi >=18.5 and bmi <29.9:
print(正常)

 

 

2019-07-03  11:11:22

以上是关于input 函数的输入和输出的主要内容,如果未能解决你的问题,请参考以下文章

Python输出和输入

python程序的输入输出(input()/print()/eval())

Python -- 基本的输入和输出

数据分析系列 之python中输入输出和函数编程

python 3 输入和输出

Python函数