Python - Object-Oriented Programming Foundations
You want to create a class
BankAccount that stores an account holder's name and balance. It should have a method deposit(amount) that adds money to the balance only if the amount is positive. Which code correctly implements this?