-2

我正在为 python 使用numexpr模块。我正在尝试运行下一个代码片段:

import numexpr as ne


def main():
    result = ne.evaluate('where((1 > 9) & (where(1 > 9, 9, 1) == 0), 2, 3)')
    print(f'Result: {result}')


if __name__ == "__main__":
    main()

numexpr抛出以下错误:

TypeError: unsupported operand type(s) for &: 'bool' and 'ConstantNode'

但是,如果我在单独的表达式中提取冲突部分,它会起作用。

def main():
    intermediate_result = ne.evaluate('where(1 > 9, 9, 1) == 0')
    result = ne.evaluate(f'where((1 > 9) & {intermediate_result}, 2, 3)')
    print(f'Result: {result}')

但这个想法是有一个单一的表达。有谁知道我可以如何重写这个公式以使其工作?

提前致谢。

4

1 回答 1

1

&是位运算and符。为什么不直接使用and

于 2019-04-17T18:56:10.980 回答