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相减 生成列表 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
网友评论