高等继续教育 / Python编程
题型描述: 编程题
下面这段代码的运行结果是什么?
a=[1,2,3,4,5]
b=list(map(lambda x:x**2,a))
c=[x for x in b if x>10]
print(b)
print(c)
参考答案:
佳题速递: