開始使用免費開始

將資產負債表項目配對到正確分類

資產是企業用來創造正向經濟價值的資源,因此資產會為企業帶來效益。負債則是企業未來需要清償的負擔。資產與負債還可再細分:

  • 流動資產 指通常在 1 年內帶來效益的資產。
  • 流動負債 指必須在 1 年內清償的負擔。
  • 非流動資產 會在超過 1 年的期間內帶來效益。
  • 非流動負債 可以在超過 1 年的期間內清償。

在本練習中,accounts_receivableaccounts_payableshort_term_loanslong_term_loansinventorylong_term_investmentsproperty_plant_equipment 都已為你載入。

你將判斷哪些資產負債表項目屬於流動或非流動的資產與負債。接著,你會在正確的分類中將相關項目相加,得到流動與非流動資產及負債的合計。

本練習屬於課程

使用 Python 分析財務報表

檢視課程

練習說明

  • 加總流動資產總額。
  • 加總非流動資產總額。
  • 加總流動負債總額。
  • 加總非流動負債總額。

動手互動練習

試著完成這個範例程式碼,體驗一下這個練習。

accounts_receivable = 1298
accounts_payable = 500
short_term_loans = 3357
long_term_loans = 8000
inventory = 5420
long_term_investments = 7892
property_plant_equipment = 9840

# Add up total current assets
total_current_assets = ____

# Add up total non-current assets
total_non_current_assets = ____

# Add up total current liabilities
total_current_liab = ____

# Add up total non-current liabilities
total_non_current_liab = ____
編輯並執行程式碼