当前位置:首页python > 正文

python对列表里的数进行平方

作者:野牛程序员:2023-07-11 07:55:24python阅读 2719

要对Python中的列表中的数进行平方,可以使用列表推导式或循环遍历的方法。下面是两种实现的示例代码:

  1. 使用列表推导式:

numbers = [1, 2, 3, 4, 5]  # 假设这是要平方的列表

squared_numbers = [x**2 for x in numbers]

print(squared_numbers)

输出:

[1, 4, 9, 16, 25]
  1. 使用循环遍历:

numbers = [1, 2, 3, 4, 5]  # 假设这是要平方的列表

squared_numbers = []
for x in numbers:
    squared_numbers.append(x**2)

print(squared_numbers)

输出:

[1, 4, 9, 16, 25]

这两种方法都会将列表中的每个数平方,并将结果存储在新的列表 squared_numbers 中。


野牛程序员教少儿编程与信息学奥赛-微信|电话:15892516892
野牛程序员教少儿编程与信息学竞赛-微信|电话:15892516892
相关推荐

最新推荐

热门点击