Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

strip characters from a string python

>>> string = 'This is a string, with words!'
>>> string.split()
['This', 'is', 'a', 'string,', 'with', 'words!']
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #strip #characters #string #python
ADD COMMENT
Topic
Name
5+4 =