------
## 最终结论
```python
def cube_nums(nums):
    return list(map(lambda x: x**3, nums))
```