I have a string of calculations which I parsed to get first operand, second operand and symbol used in calculation.
op01, sym0, op02 = "1", "+", "5"
Now I want to perform calculation on it but could not figure out how? I want
op01 sym0 op02
which should become:
1 + 5
and give the result:
6