Compute net cash flow
In the last video, you saw what cash outflows and inflows are. In this exercise, you'll put that knowledge to the test. You'll add and subtract transactions to the net income to compute net cash flow. The exercise has one transaction from each part of the cash flow statement: cash flow from operating, investing, and financing activities.
Este ejercicio forma parte del curso
Analyzing Financial Statements in Python
Instrucciones del ejercicio
- Correctly add and subtract the net cash inflows and outflows from the net income, filling in the blanks with
+
or-
.
Ejercicio interactivo práctico
Prueba este ejercicio y completa el código de muestra.
net_profit = 1000
decrease_in_accounts_recievable = 20
sale_of_property = 430
dividends_paid = 50
# Fill in the blanks
net_cash_flow = net_profit ____ decrease_in_accounts_recievable ____ sale_of_property ____ dividends_paid
print(net_cash_flow)