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!
Este exercício faz parte do curso
Analyzing Financial Statements in Python
Instruções do exercício
- Compute the
total_liabilities
usingcurrent_assets
,non_current_assets
, andshareholders_equity
.
Exercício interativo prático
Experimente este exercício completando este código de exemplo.
current_assets = 1500
non_current_assets = 3000
shareholders_equity = 1200
# Compute total liabilities
total_liabilities = ____