ComenzarEmpieza gratis

Days payable outstanding

We will now have a look at our accounts payable, or creditors, and a ratio called the Days Payable Outstanding (DPO).

This ratio is an efficiency ratio that measures the average number of days a company takes to pay its suppliers.

The DPO ratio is calculated as follows:

\(Days\,Payable\,Outstanding = \frac{Ending\,Balance\,Creditors}{Total\,Cost\,of\,Goods\,Sold} \times Days\,in\,Financial\,Year\)

T-Z wants to know its days payable outstanding and has asked you to calculate it.

The following is available in the workspace:

  • Total COGS for the period = 4000
  • Closing Payables balance = 650

Este ejercicio forma parte del curso

Financial Forecasting in Python

Ver curso

Instrucciones del ejercicio

  • Set the variables for cogs_tot and closing balance creditors creditors_end.
  • Calculate the Days Payable Outstanding dpo.
  • Print the dpo.

Ejercicio interactivo práctico

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

# Get the variables
cogs_tot = ____
____ = 650

# Calculate the days payable outstanding
____ = (____/____)*365

# Print the days payable outstanding
print("The days payable outstanding is {}.".format(dpo))
Editar y ejecutar código