String Processing
In Python, strings are a list of characters, therefore, strings are processed just like lists. The many of the same techniques used to process a string are also used to process a list. Some of these techniques are in the Tool Box for Sequential Data Types.
See: Python Docs for all String Methods
String Specific methods:
.strip(), .lstrip(), .rstrip()
.split(), .splitlines(), .rsplit()
.replace()