The Account Manager
A easy Python interview practice problem on DataDriven. Write and execute real python code with instant grading.
- Domain
- Python
- Difficulty
- easy
- Seniority
- L4
Problem
Implement bank_account_simulator(initial_balance, ops) that applies a list of ops to a BankAccount starting at initial_balance. Ops are ['deposit', amt], ['withdraw', amt], or ['balance']. Withdraw raises ValueError if amt > balance. Return the final balance after all ops; if any withdraw would overdraw, return the string 'ValueError' instead.
Summary
Deposits, withdrawals, and the risk of going negative.
Practice This Problem
Solve this Python problem with real code execution. DataDriven runs your Python code in a real environment and grades it automatically.