列表生成器

#列表生成式:
def f(n):
return n**3
x = [f(x) for x in range(10)]
print(x)
posted @ 2019-07-08 15:22  python小白丶  阅读(133)  评论(0编辑  收藏  举报