Python Learning-A small program for calculating BMI

Source: Internet
Author: User
Tags ming

Example:

Xiao Ming is 1.75 tall and weighs 80.5kg. Please help Xiao Ming calculate his BMI according to the BMI formula (weight divided by the square of height) and according to the BMI Index:

    • Less than 18.5: too light

    • 18.5-25: Normal

    • 25-28: Overweight

    • 28-32: Obesity

    • Above 32: Severe obesity

Use If-elif to determine and print the results:

# -*- coding: utf-8 -*-height = 1.75weight = 80.5 
BMI = 80.5/1.75*1.75if BMI < 18.5:print (' too light ') elif BMI >= 18.5 and BMI < 25:print (' normal ') elif BMI >= nd BMI < 28:print (' overweight ') elif BMI >= and BMI < 32:print (' obese ') else:print (' severe obesity ')


Example:

Please use the loop to print a hello to each name in the list in turn, xxx!:

L = [' Bart ', ' Lisa ', ' Adam ']for name in L:print (' Hello,%s! ') %name)


Learn from:

Liaoche's official website

Http://www.liaoxuefeng.com/wiki/0014316089557264a6b348958f449949df42a6d3a2e542c000/ 001431675624710bb20e9734ef343bbb4bd64bcd37d4b52000



This article is from the "Zhao Dongwei blog" blog, make sure to keep this source http://zhaodongwei.blog.51cto.com/4233742/1882253

Python Learning-A small program for calculating BMI

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.