TypeError: unhashable type: 'numpy.ndarray'

9 浏览
0 Comments

TypeError: unhashable type: 'numpy.ndarray'

我想从一个包含三列数据的文本文件中,只取出第一列的值等于上面定义的值的数据。然后,我想将这部分数据放入一个名为"slice"的新数组中(我使用的是Python 2.7)。

上述代码返回以下错误信息:

Traceback (most recent call last):

File "", line 1, in

set(energies)&set(above)

TypeError: unhashable type: 'numpy.ndarray

0