作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想分配给d
或者a
,或者,如果a
是None
, b
或者,如果 b
也是 None
,则为 c
。这有效:
a = b = c = np.array([1])
d = a or b or c
但是,这不会:
a = b = c = np.array([1, 2])
d = a or b or c
ValueError: The truth value of an array with more than one element is ambiguous. Use a.any() or a.all()
显然,or 正在逐元素地用于具有多个元素的数组。我可以做什么来实现
d = a or b or c
使用 NumPy 数组?
最佳答案
I would like to assign to
d
eithera
or, ifa
isNone
,b
or, ifb
is alsoNone
,c
.
然后逐字检查None
:
d = a if a is not None else b if b is not None else c
您的版本适用于单元素数组这一事实是其真实性的副作用。它不会达到您的预期:
a = np.array([0])
b = "wat"
c = a or b
c
现在将是 "wat"
,即使 a
不是 None
。
关于python - 为什么 "a or b or c"不适用于 NumPy 数组?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59324067/
我是一名优秀的程序员,十分优秀!