Okay so Im very new to python and programming in general. I have input questions for the first and second number as well as the operation. This may sound dumb but Im having trouble with two things, when I'm printing the result for addition it combines the numbers. My other problem is that I have subtraction but it doesn't want to support the operand type.
The addition looks sum like this " (first_num+'+'+second_num+'='+(first_num) + (second_num))" The problem is it just combines the number say 5 + 3 = 53. Ive tried different things but cant come to a solution. The subtraction comes up with an error saying "unsupported operand type "-" for str and str. Im not exactly sure what to do with that and if it can subtract. Any clarity is thanked.