Compute the current ratio
Recall that the current ratio is a liquidity ratio that measures a company's ability to meet its short-term financial burdens.
In this exercise, some items from the balance sheet have been defined for you as variables. You will assess these items and use them to compute the current ratio.
Cet exercice fait partie du cours
Analyzing Financial Statements in Python
Instructions
- Compute the current ratio using the information provided.
Exercice interactif pratique
Essayez cet exercice en complétant cet exemple de code.
accounts_receivable = 1298
accounts_payable = 500
short_term_loans = 3357
long_term_loans = 8000
inventory = 5420
long_term_investments = 7892
property_plant_equipment = 9840
# Compute the current ratio
current_ratio = ____
print(current_ratio)