ComenzarEmpieza gratis

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.

Este ejercicio forma parte del curso

Analyzing Financial Statements in Python

Ver curso

Instrucciones del ejercicio

  • Compute the current ratio using the information provided.

Ejercicio interactivo práctico

Prueba este ejercicio y completa el código de muestra.

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)
Editar y ejecutar código