Question: Continuing on with the solution from the previous question and modify the evaluate_postfix(postfix) function by adding Exception handling. The function takes both valid postfix and

Continuing on with the solution from the previous question and modify the evaluate_postfix(postfix) function by adding Exception handling. The function takes both valid postfix and invalid postfix expressions. The function should return the result if the expression is valid. But the function should return a null value (None) and print an error message: "ERROR: Invalid postfix expression!" if the postfix expression is invalid. For example, the following code fragment: print(evaluate_postfix('2 107+) ) produces: ERROR: Invalid postfix expression! None The postfix expression can contain multi-digit numbers. For example: Answer: (penalty regime: 0,0,5,10,15,20,25,30,35,40,45,50% ) \begin{tabular}{|c|c|c|} \hline 1 & def evaluate_postfix(postfix): \\ 2 & \\ 3 & & \\ 4 & def compute(number 1, number 2, operator): \\ 5 & if operator ==+: \\ 6 & return number 1+ number2 \\ 7 & elif operator ==: \\ 8 & return number 1 number2 \\ 9 & elif operator ==: \\ 10 & return number 1 number 2 \\ 11 & else: \\ 12 & return number 1/ number 2 \end{tabular}
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
