python“in”函数不能按预期的方式工作

时间:2017-08-28 19:07:05

标签: python numpy

示例:

import numpy as np

blah = np.array([['10.12.5.40', 0],
                 ['10.12.5.40', 1],
                 ['10.12.5.40', 2]])

print(['10.12.5.40', 2] in blah)

print(['10.12.5.40', 10] in blah)

in的第一次使用正常工作,为True中的现有元素提供array。但是,第二种用法要求使用不存在的元素,但仍会返回True

0 个答案:

没有答案