使用 Python 進行財務預測
Victoria Clark
CGMA Financial Analyst

以重要指標為基礎
顯示公司財務健康度
為穩健的財務預測提供架構

兩個關鍵要素:
毛利:
DIRECT 銷售與成本
淨利:
INDIRECT 收入與費用

DIRECT 銷售與成本
cogs = material_costs +
direct_labor_costs +
factory_costs
gross_profit = sales - cogs

INDIRECT 收入與費用
opex = insurance +
admin_sales +
r_d +
training_cost +
other_non_direct_costs
net_profit = gross_profit - opex

使用 Python 進行財務預測