LLD - Design — Splitwise (Expense Sharing)
What will be the output of this code?
class Expense:
def __init__(self, amount, paid_by):
self.amount = amount
self.paid_by = paid_by
expense = Expense(100, 'Bob')
print(expense.paid_by)