I'm trying to remove specific characters from a string using python. This is the code i'm using right now. Unfortunately it appears to do nothing to the string??
for char in line:
if char in " ?.!/;:":
line.replace(char,'')
|
I'm trying to remove specific characters from a string using python. This is the code i'm using right now. Unfortunately it appears to do nothing to the string??
|
||||
|
|
|
Strings in python are immutable (can't be changed). Because of this, the effect of Also, the way you are doing it is going to be kind of slow, relatively. It's also likely to be a bit confusing to experienced pythonators, who will see a doubly-nested structure and think for a moment that something more complicated is going on. You can instead use
— which only works on Python 2.6 and newer Python 2.x versions * — or regular expression replacement with
The characters enclosed in brackets constitute a character class. Any characters in * for compatibility with earlier Pythons, you can create a "null" translation table to pass in place of
Here I haven't started using Python 3 yet, so I'm not sure how you would translate this in/to Python 3. As kevpie mentions in a comment on one of the answers, , and as noted in the documentation for When calling the So to do the above dance with a Unicode string you would call something like
Here
|
||||
|
Am I missing the point here, or is it just the following:
Put it in a loop:
|
||||
|
|
|||
|
|
|
|||||
|
|
The asker almost had it. Like most things in Python, the answer is simpler than you think.
You don't have to do the nested if/for loop thing, but you DO need to check each character individually. |
|||
|
|
|
Strings are immutable in Python. The
|
|||||||
|