NP20 立方解析

思路:

step1:对应输出即可;

代码如下:

my_list = [i**3 for i in range(1,11)]
print(my_list)