Python 列出数字列表的所有平方
我们将使用 Python 编写一个简单的程序,该程序将接受一个数字列表,并返回这些数字的平方列表。
实例
numbers = [1, 2, 3, 4, 5]
squares = [n**2 for n in numbers]
print(squares)
squares = [n**2 for n in numbers]
print(squares)
代码解析:
numbers = [1, 2, 3, 4, 5]
:定义一个包含数字 1 到 5 的列表。squares = [n**2 for n in numbers]
:使用列表推导式遍历numbers
列表中的每个元素n
,并计算其平方n**2
,然后将结果存储在squares
列表中。print(squares)
:打印出squares
列表,即每个数字的平方。
输出结果:
实例
[1, 4, 9, 16, 25]
点我分享笔记