ValueError: The truth value of an array with more than one element is ambiguous. Use a.any() or a.all()

前端 未结 6 2271
独厮守ぢ
独厮守ぢ 2020-11-21 04:59

I just discovered a logical bug in my code which was causing all sorts of problems. I was inadvertently doing a bitwise AND instead of a logical AND

6条回答
  •  情书的邮戳
    2020-11-21 05:35

    try this=> numpy.array(r) or numpy.array(yourvariable) followed by the command to compare whatever you wish to.

提交回复
热议问题