gpt4 book ai didi

python - 了解 Python/PuLP 代码的片段

转载 作者:太空宇宙 更新时间:2023-11-03 11:22:49 25 4
gpt4 key购买 nike

我必须采用他们使用 PuLP 包的现有脚本。我需要知道以下行的结果如何:

unit = ["one", "two", "three"]
time = range(10)

status=LpVariable.dicts("status",[(f,g) for f in unit for g in time],0,1,LpBinary)

键/值是什么样子的?

status["one"] = [0,1,1,1...]?

非常感谢您的帮助!

最佳答案

from pulp import *
unit = ["one", "two"]
time = range(2)

status=LpVariable.dicts("status",[(f,g) for f in unit for g in time],0,1,LpBinary)

导致

>>> status

{('two', 1): status_('two',_1),
('two', 2): status_('two',_2),
('one', 2): status_('one',_2),
('one', 0): status_('one',_0),
('one', 1): status_('one',_1),
('two', 0): status_('two',_0)}

因此,不存在键为“one”的条目。

关于python - 了解 Python/PuLP 代码的片段,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39370442/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com