------
## 最终结论
```python
def multi_list(rows, cols):
    return [[i * j for j in range(cols)] for i in range(rows)]
```