What does `" red blue ".strip()` return when no argument is supplied?
Explanation
The call removes whitespace at both outer edges and preserves the space between the words, yielding `red blue`. Removing internal whitespace as well would describe a different transformation, not the default behavior of `strip`.