class person:
    배부름 =0
    def exercise():
        print("운동중")
    def 밥먹기(self,밥먹는량):
            self.배부름 = self.배부름 + 밥먹는량
            print ("소화중")
jack = person()
tom = person()

tom.밥먹기(3)
jack.밥먹기(3)
jack.밥먹기(3)
print(tom.배부름)

이거 왜되는지 나중에 강의함