Hello.
I have a list like this:
mylist = [7, "+", 2, "+", 1]
I want to take them out of the list inorder to run the operation and get the real result; something like this:
result = 7 + 2 + 1
So the result variable will be set to 10.
How can i do that?!