变量和方法的使用


1、获取用户输入的名字、身高、体重

2、判断6岁儿童的身高和体重是否正常

class Stu:

    def __init__(self, name, high, weight):
        self.n = name
        self.h = high
        self.w = weight

    def high(self):
        # 大于115厘米:身高偏高
        # 小于95厘米:身高偏矮
        if int(self.h) > 115:
            print(f'{self.n}的身高偏高')
        elif int(self.h) < 95:
            print(f'{self.n}的身高偏矮')
        else:
            print(f'{self.n}的身高正常')

    def weight(self):
        # 大于29千克:体重偏重
        # 小于19千克:体重偏轻
        if int(self.w) > 29:
            print(f'{self.n}的体重偏重')
        elif int(self.w) < 19:
            print(f'{self.n}的体重偏轻')
        else:
            print(f'{self.n}的体重正常')


name = input('请输入您的名字:')
high = input('请输入您的身高(厘米):')
weight = input('请输入您的体重(千克):')

s = Stu(name, high, weight)
s.high()
s.weight()

results matching ""

    No results matching ""