网络编程
位置:首页>> 网络编程>> Python编程>> Python 平方列表中每个数字的多种操作

Python 平方列表中每个数字的多种操作

作者:Loewi大湿  发布时间:2023-11-14 03:53:00 

标签:Python,平方,列表,数字

Python 平方列表中每个数字的多种操作

map

map(function,iterable)


x = [1,2,3,4,5]
def square(num):
return num*num
print(list(map(square,x)))
#output:[1, 4, 9, 16, 25]

lambda

lambda x:


x = [1,2,3,4,5]
print(list(map(lambda num:num*num, x)))
#output:[1, 4, 9, 16, 25]

list comprehensions

[funtion for item in iterable]


print([ num*num for num in [1,2,3,4,5]])
#output:[1, 4, 9, 16, 25]

补充:Python中求数字的平方根和平方的几种方法

方法一:使用内置模块


>>> import math
>>> math.pow(12, 2)  # 求平方
144.0
>>> math.sqrt(144)  # 求平方根
12.0
>>>

方法二:使用表达式


>>> 12 ** 2    # 求平方
144
>>> 144 ** 0.5   # 求平方根
12.0
>>>

方法三:使用内置函数


>>> pow(12, 2)   # 求平方
144
>>> pow(144, .5)  # 求平方根
12.0
>>>

来源:https://blog.csdn.net/weixin_42317507/article/details/84190576

0
投稿

猜你喜欢

手机版 网络编程 asp之家 www.aspxhome.com