LLD - Design — Elevator System
Given this Python snippet, what will be printed?
class Request:
def __init__(self, floor, direction):
self.floor = floor
self.direction = direction
r = Request(5, 'up')
print(r.floor, r.direction)