Challenge: Summarize Customer Transactions
Swipe to start coding
Given a list of customer transactions, your goal is to analyze and summarize the account activity. Each transaction is represented as a dictionary containing the date, amount, and type (either "deposit" or "withdrawal").
- Create a pandas DataFrame from the provided list of transaction dictionaries.
- Calculate the total amount deposited by the customer.
- Calculate the total amount withdrawn by the customer.
- Determine the ending balance by subtracting total withdrawals from total deposits.
- Print the total deposits, total withdrawals, and ending balance in a readable format.
Solution
Thanks for your feedback!
single
Ask AI
Ask AI
Ask anything or try one of the suggested questions to begin our chat
Can you explain this in simpler terms?
What are the main benefits or drawbacks?
Can you give me a real-world example?
Awesome!
Completion rate improved to 4.76
Challenge: Summarize Customer Transactions
Swipe to show menu
Swipe to start coding
Given a list of customer transactions, your goal is to analyze and summarize the account activity. Each transaction is represented as a dictionary containing the date, amount, and type (either "deposit" or "withdrawal").
- Create a pandas DataFrame from the provided list of transaction dictionaries.
- Calculate the total amount deposited by the customer.
- Calculate the total amount withdrawn by the customer.
- Determine the ending balance by subtracting total withdrawals from total deposits.
- Print the total deposits, total withdrawals, and ending balance in a readable format.
Solution
Thanks for your feedback!
single