同时附加到2个列表

时间:2014-07-13 05:28:31

标签: python

我有一段看起来像这样的Python代码:

array1 = []
array2 = []

def my_function():
    # do some stuff
    return x, y # both are integers

# append x to array1; append y to array2

我尝试做的是将my_function的输出附加到单独的数组中。我知道我需要以某种方式分离my_function的2个输出,然后制作2个单独的append()语句,但我不太清楚如何实现它。

提前致谢!

1 个答案:

答案 0 :(得分:5)

x, y = my_function() #get x,y returned from my_function()
# append x to array1; append y to array2
array1.append(x)
array2.append(y)