我正在尝试使用itertools通过数学运算符进行迭代.
通常使用[1,2,3]的数组,使用组合我可以获得结果:
1
1,2
1,3
2,3
1,2,3
等等
我想在[1、2、3]数组上使用这种方式:
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)))