• 2022-05-31
    下列代码运行结果是?a = map(lambda x: x**3, [1, 2, 3])list(a)
    A: [1, 12, 27]
    B: (1, 6, 9)
    C: [1, 8, 27]
    D: [1, 6, 9]