Remove spaces surrounding string in Python

"  MASBicudo  ".strip()

Result is "MASBicudo".

This removes spaces from both ends of a string.