vivainsights.us_to_space¶
Replace underscores with spaces in a given string.
- vivainsights.us_to_space.us_to_space(string)[source]¶
Replace underscores with spaces in a string.
- Parameters:
string (str) – Input string potentially containing underscores.
- Returns:
String with underscores replaced by spaces.
- Return type:
str
Examples
>>> from vivainsights import us_to_space >>> us_to_space("Meeting_and_call_hours_with_manager_1_1") 'Meeting and call hours with manager 1 1'