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

时间:2021-05-23

map

map(function,iterable)

x = [1,2,3,4,5]def square(num): return num*numprint(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 >>>

以上为个人经验,希望能给大家一个参考,也希望大家多多支持。如有错误或未考虑完全的地方,望不吝赐教。

声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。

相关文章