LLD - Design — Elevator System
What will be the output of the following Python code?
class Floor:
def __init__(self, number, is_accessible):
self.number = number
self.is_accessible = is_accessible
f = Floor(10, true)
print(f.number, f.is_accessible)