Data Formatting
General Info
Useful Snippets

9.0.21 strip front and back spaces

Example:

def strip_front_and_back_spaces(text):
    " Removes spaces from the front and back of a string"
    text = text.strip()
    return(text)