Issue
I wanted to eliminate specific characters by using rstrip() function in python, but it didn't work well to me.
Here is the code I wrote.
a = "happy! New! Year!!!"
print(a)
b = a.lower()
print(b)
c = b.rstrip('!')
print(c)
And this is the result.
happy! New! Year!!!
happy! new! year!!!
happy! new! year
The result I wanted was to output "happy new year", but the function just got rid of last three '!'. I have no idea why it happened.
Solution
The rstrip
function only strips a given character appearing one or more times at the end of the entire string. To remove !
from the end of each word, we can use re.sub
:
a = "happy! New! Year!!!"
output = re.sub(r'\b!+(?!\S)', '', a)
print(output) # happy New Year
Answered By - Tim Biegeleisen
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.