gpt4 book ai didi

python - 'method' 对象在 python 中不可使用子脚本

转载 作者:行者123 更新时间:2023-12-01 08:08:59 25 4
gpt4 key购买 nike

我正在 python 中实现 CSP 的最小剩余值。我遇到了一些错误。

我使用 python3 运行,也使用 python2 解释器运行。

def select_unassigned_variable(assignments, csp):
variables = [var for var in csp.nodes()
if var not in assignments.keys()]
if not variables:
return None
return min(variables, key=(lambda var: (len(csp.nodes[var]['domain']))))

我收到如下错误:

return min(variables, key=(lambda var: (len(csp.nodes[var]['domain']))))
TypeError: 'method' object is not subscriptable

最佳答案

更改为类似的内容

key=(lambda var: (len(csp.nodes()[var]['domain']))))

关于python - 'method' 对象在 python 中不可使用子脚本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55381861/

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