码迷,mamicode.com
首页 > 其他好文 > 详细

用面向对象计算BMI指数

时间:2017-11-03 23:55:11      阅读:208      评论:0      收藏:0      [点我收藏+]

标签:return   property   log   imp   面向对象   rom   ini   int   print   

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指数

标签:return   property   log   imp   面向对象   rom   ini   int   print   

原文地址:http://www.cnblogs.com/ldq1996/p/7780489.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!