class Box: def __init__(self): self.h = 5 self.w = 3 self.d = 7 def V(self): return self.h * self.w * self.d b = Box() print(b.V())