Spaces:
Sleeping
Sleeping
File size: 161 Bytes
c5e45f6 | 1 2 3 4 | def convert_list_to_string(text_list):
combined_string = ' '.join(text_list)
cleaned_string = ' '.join(combined_string.split())
return cleaned_string |