計算損益兩平點
追蹤並理解每月單位成本的變化很重要,因為 COGS 會影響毛利。若某個時間點當月的銷售額不足以覆蓋成本,就會出現虧損。
要怎麼知道你生產足夠的數量、銷售後能覆蓋成本?可以使用「損益兩平點」這個概念。公式如下:
\(Breakeven\,Point(Units) = \frac{Fixed\,Costs}{Price\,Per\,Unit-Variable\,Cost\,Per\,Unit}\)
- 在上一個練習中,我們計算出 1 月的單位成本為 16.5 USD,2 月為 15.2 USD。計算損益兩平點時請記住這些數值。
已預先定義的變數已列印到殼層中。
本練習屬於課程
使用 Python 進行財務預測
練習說明
- 在殼層中列印變數,協助你寫出損益兩平點的公式。
- 預測 1 月與 2 月的毛利。
動手互動練習
試著完成這個範例程式碼,體驗一下這個練習。
# Calculate the break-even point (in units) for Wizit
break_even = ____/(____ - ____)
# Print the break even point in units
print("The break even point is {} units.".format(____))
# Forecast the gross profit for January and February
gross_profit_jan = (sales_price*____) - cogs_jan
gross_profit_feb = (____*____) - ____
# Print the gross profit for January and February
print("The gross profit for January and February are {} and {} USD respectively.".format(____, ____))