LLD - Design — Online Shopping Cart
Consider this code snippet:
class OrderStateMachine:
def __init__(self):
self.state = 'Pending'
def ship(self):
if self.state == 'Processing':
self.state = 'Shipped'
else:
print('Cannot ship from', self.state)
order = OrderStateMachine()
order.ship()What is the output?
