小编Fin*_*ino的帖子

KeyError:0 Python

嗨,我仍然是python的新手,想知道为什么这行:

    RP[p][t] = demand[p][t] / fillingrate[p]
Run Code Online (Sandbox Code Playgroud)

导致错误:KeyError:0

它遵循代码的相关部分.这只是一个记号错误或解决它的最佳方法是什么?

    productname = ('milk', 'yoghurt', 'buttermilk')
    fillingrate = (1.5, 1.0, 2.0)

    day = (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14)

    demand = [
    (5, 4, 3, 3, 4, 9, 13, 5, 4, 4, 3, 5, 10, 12),
    (3, 5, 3, 5, 5, 4,  3, 4, 3, 4, 3, 4,  5,  5),
    (3, 3, 5, 4, 4, 5,  4, 3, 4, 3, 4, 5,  4,  5)
    ] …
Run Code Online (Sandbox Code Playgroud)

python keyerror

2
推荐指数
1
解决办法
6117
查看次数

标签 统计

keyerror ×1

python ×1