I need to strip the character "'" from a string in python. how do I do this? I know there is a simple answer. Really what I am looking for is how to write ' in my code. for example \n = newline.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
As for how to represent a single apostrophe as a string in Python, you can simply surround it with double quotes ( To remove apostrophes from a string, a simple approach is to just replace the apostrophe character with an empty string:
|
|||||
|
|
Do you mean like this?
|
|||
|
|
|
You can escape the apostrophe with a
|
||||
|
|
