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.
Diese Übung ist Teil des Kurses
Analyzing Financial Statements in Python
Anleitung zur Übung
- Correctly add and subtract the net cash inflows and outflows from the net income, filling in the blanks with
+
or-
.
Interaktive Übung
Versuche dich an dieser Übung, indem du diesen Beispielcode vervollständigst.
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)