#python classes class Person: def __init__(self,name,age): self.name = name self.age = age p1 = Person("Mark", 23) print(p1.name) print(p1.age) class kitchenTable #rectangular shape W*L def __init__(self, width, length) self.width = width self.length = length p2 = kitchenTable(23,34) print("The kitchen\'s table has a width of ", p2.width) print("The kitchen\'s table has a length of ", p2.length)