15 lines
537 B
Python
15 lines
537 B
Python
def words_string(s):
|
|
"""
|
|
You will be given a string of words separated by commas or spaces. Your task is
|
|
to split the string into words and return an array of the words.
|
|
|
|
For example:
|
|
words_string("Hi, my name is John") == ["Hi", "my", "name", "is", "John"]
|
|
words_string("One, two, three, four, five, six") == ["One", "two", "three", "four", "five", "six"]
|
|
"""
|
|
if not s:
|
|
return []
|
|
|
|
# Replace commas with spaces, then split on whitespace
|
|
s = s.replace(',', ' ')
|
|
return s.split() |