Get startedGet started for free

Leverage ratios

Leverage ratios are a measure of how much equity and debt is used by the company in running its operations. Running a company with too much debt might sound bad initially, but if it makes enough cash inflows (more on this in the third chapter) to pay off its debts, having a lot of debt is not necessarily bad. Similarly, having too much equity is not necessarily as beneficial as one might think. It might be inefficient because a company could be borrowing more money to grow its operations.

In this exercise, you'll compute the debt-to-equity and equity multiplier ratios. Relevant items from the balance sheet have already been defined for you as variables.

You will first use these to compute total assets, liabilities, and shareholders' equity. You'll then use these values to compute the debt-to-equity and equity multiplier ratios.

This exercise is part of the course

Analyzing Financial Statements in Python

View Course

Hands-on interactive exercise

Have a go at this exercise by completing this sample 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 total assets
total_assets = ____

# Compute total liabilities
total_liabilities = ____

# Compute total shareholders' equity
shareholders_equity = ____
Edit and Run Code