gpt4 book ai didi

python - 如何在 Python 中的静态可执行公式中迭代算术运算符?

转载 作者:太空宇宙 更新时间:2023-11-03 15:54:32 24 4
gpt4 key购买 nike

我正在尝试使用 itertools 迭代数学运算符。通常使用 [1, 2, 3]array,使用 combinations 我可以获得结果:

1
1,2
1,3
2,3
1,2,3

等等

我想在 [1, 2, 3]array 上以这样的方式使用它:

1+2+3
1+2-3
1+2/3
1+2*3
1-2+3
1-2-3
1-2/3
1-2*3
...

出现并给出方程的结果。

我该怎么做呢?

最佳答案

推广到任意数量操作数的解决方案,并保留运算符的正常优先级:

from itertools import product

operands = [1, 2, 3, 4]
operators = [ '+', '*', '-', '//' ] # change '//' to '/' for floating point division
for opers in product(operators, repeat=len(operands)-1):
formula = [ str(operands[0]) ]
for op, operand in zip(opers, operands[1:]):
formula.extend([op, str(operand)])
formula = ' '.join(formula)
print('{} = {}'.format(formula, eval(formula)))

关于python - 如何在 Python 中的静态可执行公式中迭代算术运算符?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44370595/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com