top of page
python 3 deep dive part 4 oop

Python 3 - Deep Dive Part 4 Oop

class Rectangle: def __init__(self, width, height): self.width = width self.height = height

Imagine a royal decree that said: "Every building must describe_itself() ." The would say: "I am a cozy cottage." The Mansion would say: "I am a sprawling estate." python 3 deep dive part 4 oop

bottom of page