美文网首页
python入门与进阶(12-3)

python入门与进阶(12-3)

作者: buaishengqi | 来源:发表于2018-05-15 13:40 被阅读15次

12-3 map

# 12-3 map类
# 看看map这个类用在什么场景下!!!
# Q1:求下面列表的数字的平方,组成的新列表
list_x = [1,2,3,4,5,6,7,8]
def square():
    return x * x

#方法1:
for x in list_x:
    square(x)

# 方法2
list_x = [1,2,3,4,5,6,7,8]
def square(x):
    return x * x

r = map(square,list_x)
print(list(r))
#打印结果如图1
001.jpg

相关文章

网友评论

      本文标题:python入门与进阶(12-3)

      本文链接:https://www.haomeiwen.com/subject/wgbedftx.html