用面向对象计算BMI指数
Posted TAMAYURA
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了用面向对象计算BMI指数相关的知识,希望对你有一定的参考价值。
from __future__ import division class Student: def __init__(self,name,weight,height): self.name=name self.weight=weight self.height=height @property def bmi(self): return [self.weight/(self.height**2),self.height*self.height] name=input(‘姓名》》:‘) T=input(‘体重(\kg)》》:‘) H=input(‘身高(\m)》》:‘) print(name,T,H) s=Student(name,float(T),float(H)) print(s.height) print(‘%s的BMI指数为:‘%name,s.bmi)
以上是关于用面向对象计算BMI指数的主要内容,如果未能解决你的问题,请参考以下文章