Numpy 按位运算符优先级?
numpy 按位运算符 & 的优先级排名是什么?和 | ?
如果我执行
a & b | c
什么表达式,它会评估什么? a & (b | c) ? <代码>(a和b)| c ?
怎么样?
a | b & c
我还假设 NOT (~) 具有最高优先级
What's the priority ranking of numpy bitwise operators & and | ?
if I do
a & b | c
what expression does it evaluate? a & (b | c)
? (a & b) | c
?
How about
a | b & c
I also assume NOT (~) has the highest priority?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
当您的互联网连接中断时,您可以使用以下技巧。它适用于您可能遇到的许多问题。该技术的通俗描述是“吮吸看看”。
Here is a technique that you can use when your internet connection is down. It is applicable to many questions that you might have. The colloquial description of the technique is "Suck it and see".
请参阅文档的此部分,以及此页面(感谢@FJ)。
优先级是:
~
)&
)^
)|
)这意味着那:
Refer to this section of the documentation, and also this page (thanks @F.J.).
Priority is:
~
)&
)^
)|
)This means that: