Spaces:
Running
on
Zero
Running
on
Zero
File size: 373 Bytes
37a9836 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
def normalize_whitespace(text: str) -> str:
"""
Normalize whitespace in text by:
1. Removing leading and trailing whitespace
2. Replacing any sequence of whitespace characters with a single space
Args:
text: Input string to normalize
Returns:
String with normalized whitespace
"""
return ' '.join(text.split())
|