第16948题 判断题
判断小明编写的计算列表[4,6,3,2,5,8,7,9]中各整数平方的Python程序是否正确

数学老师让小明编程计算列表[4,6,3,2,5,8,7,9]中各整数的平方,小明称用两行代码即可实现,给出的程序如下:

a = [4,6,3,2,5,8,7,9]
print(list(map(lambda x: x ** 2, a)))

请判断该程序是否正确。

{{ option.label }}
子题{{ index + 1 }} {{ child.type_label }}
{{ option.label }}
✓ 正确 ◐ 部分正确 ✗ 错误
程序运行统计
暂无判题统计
提交{{ questionInfo.stats ? questionInfo.stats.submit_count : 0 }}次 正确率{{ statsAccuracy }}%
答案解析