------
## 最终结论
```python
def string_to_list(input_string):
    return input_string.split()
```