ComeçarComece de graça

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 exercício faz parte do curso

Analyzing Financial Statements in Python

Ver curso

Instruções do exercício

  • Compute the current ratio using the information provided.

Exercício interativo prático

Experimente este exercício completando este código de exemplo.

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 e executar o código