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 ejercicio forma parte del curso
Analyzing Financial Statements in Python
Instrucciones del ejercicio
- Compute the
total_liabilities
usingcurrent_assets
,non_current_assets
, andshareholders_equity
.
Ejercicio interactivo práctico
Prueba este ejercicio y completa el código de muestra.
current_assets = 1500
non_current_assets = 3000
shareholders_equity = 1200
# Compute total liabilities
total_liabilities = ____