You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
input_text = "4 + 9 / 8 * 9"
expr = ExpressionParser().parse(input_text)
print(expr.evaluate())
when I run this shell, I get 4.125. The result should be 14.125。The Calculation Order should :
9 / 8=1.125
1.125*9=10.125
4+10.125=14.12
The text was updated successfully, but these errors were encountered:
input_text = "4 + 9 / 8 * 9"
expr = ExpressionParser().parse(input_text)
print(expr.evaluate())
when I run this shell, I get 4.125. The result should be 14.125。The Calculation Order should :
9 / 8=1.125
1.125*9=10.125
4+10.125=14.12
The text was updated successfully, but these errors were encountered: