n = input("Please enter an arithmetic expression: ")
i = 0
for i in range(len(n)):
if i <len(n):
as you can see after the if statement I have hit a wall and I'm confused about how to go about this. if the user were to input (100+50+1-1) the output would be 150 so to speak. so the plan is how would I go about calculating the input of the arithmetic expression the user puts in.