Python、迭代工具:“list”对象不可调用

mm5n2pyu  于 2022-11-27  发布在  Python
关注(0)|答案(1)|浏览(128)

我尝试运行此函数,但出现错误:TypeError: 'list' object is not callable

import itertools

def get_all_pair_combinations(list):
    return list(itertools.combinations(list, 2))
    
pair_indexes = get_all_pair_combinations(list(range(len(features_vectors[0]))))

调用的features_vectors[0]是一个1024个数组的列表。

jogvjijk

jogvjijk1#

你不能将列表传递给函数,请阅读有关Map函数的信息!

相关问题