Links: INDEX - PYTHON
Rel:
Ref:
Tags: #public


str is a __builtin__ type


methods

>>> s = 'I want to remove this remove this'
>>> s.replace('remove this', '')
'I want to  '
>>> a = '"The quotes are part of the string"'
>>> b = "I ain't gotta escape that"
>>> c = 'I cain\'t not escape that'
>>> d = "\"The quotes are part of the string\""
>>> d
'"The quotes are part of the string"'
>>> print(d)
"The quotes are part of the string"
>>>