負債與股權融資
在前一章中,你可以假設用於 NPV 計算的折現率僅根據通膨等指標決定。
不過,在本章中,你是新創公司的 CEO,公司有未償還的負債與融資成本,你需要將其納入調整。
你將在接下來的練習中,使用 WACC 作為折現率。
在這個練習中,假設你申請一筆 $1,000,000 的貸款來為專案融資,這將是公司唯一的未償還負債。這筆貸款占公司總融資 $2,000,000 的 50%。其餘的資金來自股權的市值。
本練習屬於課程
Python 金融概念入門
練習說明
- 將公司負債的市值
mval_debt設為你為專案籌資所發放的貸款金額。 - 將公司股權的市值
mval_equity設為扣除貸款後的剩餘資金金額。 - 將公司總融資的市值
mval_total設為負債與股權的總和。 - 計算並列印公司融資中來自負債的比例(
percent_debt)以及來自股權的比例(percent_equity)。
動手互動練習
試著完成這個範例程式碼,體驗一下這個練習。
# Set the market value of debt
mval_debt = ____
# Set the market value of equity
mval_equity = ____
# Compute the total market value of your company's financing
mval_total = ____
# Compute the proportion of your company's financing via debt
percent_debt = ____
print("Debt Financing: " + str(round(100*percent_debt, 2)) + "%")
# Compute the proportion of your company's financing via equity
percent_equity = ____
print("Equity Financing: " + str(round(100*percent_equity, 2)) + "%")