BMI

  • 9.15

    height=1.68print(“你的身高:”+str(height))weight=62print(“你的体重:”+str(we…

    python 2022年9月15日
  • 第二章 Python语言基础

    实例01 根据身高、体重计算BMI指数 运用公式 “ BMI=体重/(身高 × 身高)” 点击查看代码 height = 1.67 #保存身高的变量,单位:米 print(“您的身…

    python 2022年9月15日
  • python第二章实例

    实例01 根据身高、体重计算BMI指数,代码如下: height =float(input(“请输入你的身高:”)) weight =float(input(“请输入你的体重:”)…

    编程笔记 2022年9月15日
  • python基础学习

    一·根据身高,体重计算BMI指数 height=1.70print(“您的身高:”+str(height))weight=48.5print(“…

    python 2022年9月14日
  • The first assignment

    实例01 code01: height = 1.70print(“您的身高:”+str(height))weight = 48.5print(“…

    python 2022年9月14日
  • Python 第二章实验

    height=1.7 #保存的身高的变量, 单位:米 print(“您的身高:” + str(height)) weight = 100 print(“您的体重:” + str(w…

    python 2022年9月14日
  • python第二章实例

    实例01 根据身高、体重计算BMI指数,代码如下: height =float(input(“请输入你的身高:”)) weight =float(input(“请输入你的体重:”)…

    python 2022年9月14日
  • 13 刘欣晨

    实验 一  项目名称:根据身高、体重计算BMI指数 实验内容: height = 1.70 print(“您的身高:” + str(height)) wei…

    python 2022年9月14日
  • 第2章

    example 1.bmi height =1.70print(“您的身高:” + str(height))weight = 48.5print(&#822…

    python 2022年9月14日
  • PythonUnit2实例

    实验 1  项目名称:  python语言基础                                 实例一: height=1.70 print(“您的身高…

    python 2022年9月13日