------
## 最终结论
```python
def list_split(lst, n):
    result = []
    for i in range(n):
        result.append(lst[i::n])
    return result
```