判断题
下列两个语句的功能可能是等价:
>>> l=[i*i for i in range(5)]>>> m=list(map(lambda x:x*x,range(5)))
A.
正确
B.
错误
发表评论 取消回复