Python刷题-1

1、下列代码运行结果是?
a = map(lambda x: x**3, [1, 2, 3])
list(a)

[1, 8

你可能感兴趣的:(刷题,python,刷题)