python定义固定资产折旧函数,直线法折旧
时间: 2024-10-28 11:07:27 浏览: 42
在Python中,你可以定义一个固定资产折旧函数来模拟直线折旧法(也称为平均年限法)。这种方法假设资产的价值每年均匀减少,直到其达到残值。以下是创建这样一个简单函数的基本步骤:
```python
def straight_line_depreciation(cost, salvage_value, years_of_use):
"""
计算固定资产按照直线法的年折旧额
:param cost: 固定资产初始成本
:param salvage_value: 预期的残值
:param years_of_use: 资产预计使用寿命(年)
:return: 每年的折旧金额
"""
depreciation_rate = (cost - salvage_value) / years_of_use
return depreciation_rate
# 使用示例
cost = 50000 # 初始成本
salvage_value = 5000 # 残值
years = 10 # 使用年限
annual_depreciation = straight_line_depreciation(cost, salvage_value, years)
print(f"每年折旧额: {annual_depreciation}")
阅读全文