When the customer selects a soda, the machine will check if they added enough money. We'll set paid = True and subtract 1 from balance.
paid = True
balance
Make sure to pick self followed by . and then =, True, ., balance, -=, 1.
self
.
=
True
-=
1