python_interview_question
python_interview_question copied to clipboard
72 题是错误的
原题 72.map(lambda x:xx,[y for y in range(3)])的输出? 应该更新为 72.map(lambda x:x*x,[y for y in range(3)])的输出? 结果为 [0,1,4]