Relation of assets, liabilities, and shareholders' equity
Recall that assets, liabilities, and shareholders' equity are the three main parts of a balance sheet.
Together, their relationship with each other "balances" the balance sheet.
This relationship is helpful to remember when you don't know the value of one of the main parts of a balance sheet! Suppose you have information about a company's assets and shareholders' equity. You can use your knowledge about their relationship to determine the company's liability.
In this exercise, you will practice doing just this!
Diese Übung ist Teil des Kurses
Analyzing Financial Statements in Python
Anleitung zur Übung
- Compute the
total_liabilities
usingcurrent_assets
,non_current_assets
, andshareholders_equity
.
Interaktive Übung
Versuche dich an dieser Übung, indem du diesen Beispielcode vervollständigst.
current_assets = 1500
non_current_assets = 3000
shareholders_equity = 1200
# Compute total liabilities
total_liabilities = ____