Strange behaviour of Python strip function

Question:

I have this code:

st = '55000.0'
st = st.strip('.0')
print st

I expected it to print 55000, but instead it prints 55.
I thought perhaps the . in the argument might need to be escaped (like in a regular expression); so I also tried st = st.strip('.0'), but the result is the same.

Why are all the zeros removed from the input? Why doesn’t it stop after removing the .0?

Asked By: Aamir Rind

||

Answers:

See the documentation on str.strip, the important part being:

The chars argument is not a prefix or suffix; rather, all combinations of its values are stripped:

>>> '   spacious   '.strip()  
'spacious'  
>>> 'www.example.com'.strip('cmowz.')  
'example'  
Answered By: Andrew Clark

strip works on individual characters. You told it to strip all ‘.’ and ‘0’ characters, and that’s what it did.

Answered By: Fred Larson

Because you’re telling it to strip all periods and 0s, so it keeps going up to the first non-period, non-0 character.

Strip uses a list of characters, not a specific configuration of them.

Try something like this instead:

st.partition('.')[0]
Answered By: Scott A

Because that’s what strip does:

The chars argument is not a prefix or suffix; rather, all combinations of its values are stripped

Answered By: Daniel Roseman

You’ve misunderstood strip() – it removes any of the specified characters from both ends; there is no regex support here.

You’re asking it to strip both . and 0 off both ends, so it does – and gets left with 55.

See the official String class docs for details.

Answered By: declension

Because the argument to strip is the set of characters to be removed, not the string to be removed. In other words. It removes each character from the ends of that string that are anywhere in the set, until it encounters a character not in that set.

Answered By: kojiro

Refer to http://docs.python.org/library/stdtypes.html#string-formatting

The [chars] arguments lists the SET of characters that must be removed from the string!

To get the desired result of 5500, use a.split('.0')[0]

Answered By: sdhull
Categories: questions Tags: , ,
Answers are sorted by their score. The answer accepted by the question owner as the best is marked with
at the top-right corner.