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:
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