I have a string here in python '#b9d9ff'. How do I remove the hash symbol (#)?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
There are various trivially-different options. Each one does the same thing for your string but handles other strings differently.
(If you don't care which, use |
||||
|
|
|
Strictly speaking, you cannot modify strings in python at all. Strings are an immutable type. If it is sufficient for your needs to return new strings with the desired modification, then the other answers do just that. If you really need a mutable type, you can use a list of single character strings, or you can use the |
|||
|
|
'#b9d9ff'.replace('#','')is not a modified version of the original, but a brand new one. – nmichaels Nov 28 '10 at 22:01