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

时间:2015-12-02 14:52:32

标签: python function input multiple-arguments

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

例如我试过:

   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]

如果有人能告诉我这是怎么可能的,或者请指出我可以在类似情况下回答我的问题的链接,我将不胜感激。

4 个答案:

答案 0 :(得分:5)

您可以使用operator.add

from operator import add

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

答案 1 :(得分:4)

您可以使用zip

def testing(a,b,c):
    result1=[x + y for x, y in zip(a, b)]
    result2=[x + y for x, y in zip(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)
print result1 #[2, 3, 4, 5]
print result2 #[3, 4, 5, 6]

答案 2 :(得分:1)

快速而简单:

result1 = [a[i] + b[i] for i in range(0,len(a))]
result2 = [a[i] + c[i] for i in range(0,len(a))]

(或者为安全起见,您可以使用range(0, min(len(a), len(b))

答案 3 :(得分:0)

而不是list,而是使用numpy中的数组。 列表连接,而数组添加相应的元素。在这里,我将输入转换为numpy数组。您可以提供函数numpy数组并避免转换步骤。

def testing(a,b,c):
    a = np.array(a)
    b = np.array(b)
    c = np.array(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)

print(result1,result2)