매입채무 회전일수 (DPO)
이제 매입채무(accounts payable), 즉 채권자(creditors)와 Days Payable Outstanding(DPO)이라는 비율을 살펴보겠습니다.
이 비율은 회사가 공급업체에 대금을 지급하는 데 걸리는 평균 일수를 나타내는 효율성 지표입니다.
DPO 비율은 다음과 같이 계산합니다:
\(Days\,Payable\,Outstanding = \frac{Ending\,Balance\,Creditors}{Total\,Cost\,of\,Goods\,Sold} \times Days\,in\,Financial\,Year\)
T-Z는 자사의 매입채무 회전일수를 알고 싶어 하며, 여러분에게 계산을 요청했습니다.
워크스페이스에는 다음 정보가 제공됩니다:
- 해당 기간의 총 매출원가(COGS) = 4000
- 기말 매입채무 잔액 = 650
이 연습은 강의의 일부입니다
Python으로 하는 Financial Forecasting
연습 안내
cogs_tot와 기말 채권자 잔액creditors_end변수를 설정하세요.- 매입채무 회전일수
dpo를 계산하세요. dpo를 출력하세요.
실습형 인터랙티브 연습
이 예제를 이 샘플 코드를 완성하여 풀어보세요.
# 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))