I want remove the "+" sign from the input 'x+y' where x and y is an string(single digit) and print the result.
For example, I am entering 5+7 and it should display 57
Here is the code:
opr = input("Enter string").strip("+")
print(opr)
This code is not removing the "+" sign.