Having such list:
x = ['+5556', '-1539', '-99','+1500']
How can I remove + and - in nice way?
This works but I'm looking for more pythonic way.
x = ['+5556', '-1539', '-99', '+1500']
n = 0
for i in x:
x[n] = i.replace('-','')
n += 1
n = 0
for i in x:
x[n] = i.replace('+','')
n += 1
print x
Edit
+
and -
are not always in leading position; they can be anywhere.