------
## 最终结论
```python
def words_string(s):
    return [word.strip() for word in s.replace(',', ' ').split()]
```