当前位置:  开发笔记 > 编程语言 > 正文

使用多个列表作为函数的输入参数(Python)

如何解决《使用多个列表作为函数的输入参数(Python)》经验,为你挑选了1个好方法。

我知道属性映射(函数,列表)将函数应用于单个列表的每个元素.但是如果我的函数需要多个列表作为输入参数呢?

例如我试过:

   def testing(a,b,c):
      result1=a+b
      result2=a+c
      return (result1,result2)

a=[1,2,3,4]
b=[1,1,1,1]
c=[2,2,2,2]

result1,result2=testing(a,b,c)

但这只会连接数组:

result1=[1,2,3,4,1,1,1,1]
result2=[1, 2, 3, 4, 2, 2, 2, 2]

我需要的是以下结果:

result1=[2,3,4,5] 
result2=[3,4,5,6]

如果有人能让我知道这是怎么可能的,或者我指的是一个可以在类似情况下回答我的问题的链接,我将不胜感激.



1> 小智..:

您可以使用 operator.add

from operator import add

def testing(a,b,c):
    result1 = map(add, a, b)
    result2 = map(add, b, c)
    return (result1, result2)

推荐阅读
小妖694_807
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有