Trim Extra Whitespace

Remove extra whitespace from a string, keeping single spaces between words.

Code

General
' '.join(str.split())

Parameters

The string to clean up

Server

More Python Snippets