------
## 最终结论
```python
def array_3d(depth, rows, cols):
    return [[['*' for _ in range(cols)] for _ in range(rows)] for _ in range(depth)]
```