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.
Diese Übung ist Teil des Kurses
Analyzing Financial Statements in Python
Anleitung zur Übung
- Compute the current ratio using the information provided.
Interaktive Übung
Versuche dich an dieser Übung, indem du diesen Beispielcode vervollständigst.
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)