美文网首页
Python map函数

Python map函数

作者: 时吉助手 | 来源:发表于2019-11-03 11:37 被阅读0次

    python3中返回迭代器:

    函数map

    def square(x):
        return x ** 2
    
    r = map(square, [1, 2, 3, 4, 5])
    
    for i in r:
        print(i)
    

    lambda map

    r = map(lambda x: x ** 2, [1, 2, 3, 4, 6])
    
    for i in r:
        print(i)
    

    相关文章

      网友评论

          本文标题:Python map函数

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