apply_transactions(balance, transactions) that starts from balance and applies each amount in the list transactions using augmented assignment (+=), where positive numbers are deposits and negative numbers are withdrawals. Return the final balance.apply_transactions(100, [50, -30, 20])
140
100 + 50 - 30 + 20 = 140.
apply_transactions(0, [])
0
No transactions leaves the balance unchanged.
Loop over transactions and do `balance += amount`.
Return balance after the loop finishes.