LLD - Design — Hotel Booking System
Identify the error in this code:
class Room:
def __init__(self, name):
self.name = name
class Office(Room):
def __init__(self, name, floor):
self.floor = floor
office = Office('Main Office', 3)
print(office.name, office.floor)