Solution: li = [2,4,6,8] for i in li: assert i%2==0 Question 71 Please write a program which accepts basic mathematic expression from console and print the evaluation result. Example: If the following string is given as input to the program: 35+3 Then, the output of the program ...