← 返回题库
中级

经济增长核算

未完成
中级参考 代码结构已给出,请填写 ____ 处
def solve(____):
    predicted_growth = tech_growth + capital_share * capital_growth + (____ - capital_share) * labor_growth
    tfp_contribution = tech_growth / output_growth * ____
    capital_contribution = capital_share * capital_growth / output_growth * ____
    labor_contribution = (____ - capital_share) * labor_growth / output_growth * ____
    return {"____": output_growth, "____": round(____), "____": round(____), "____": round(____)}

示例

输入
solve(0.05, 0.3, 0.02, 0.04, 0.02)
期望输出
{'产出增长率': 0.05, 'TFP贡献': 40.0, '资本贡献': 24.0, '劳动贡献': 28.0}
Python 代码 🔒 登录后使用
🔒

登录后即可练习

注册免费账号,在浏览器中直接运行 Python 代码