美文网首页
python 两个list相减 生成列表

python 两个list相减 生成列表

作者: 戒灵 | 来源:发表于2021-12-24 17:33 被阅读0次

    python 两个list相减 生成列表 len相同 元素为int类型

    a = [5,4,3,2,1]
    b = [1,2,3,4,5]
    print(list(map(lambda x: x[0]-x[1], zip(a, b))))
    
    输出:[4, 2, 0, -2, -4]
    

    相关文章

      网友评论

          本文标题:python 两个list相减 生成列表

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