我有一段看起来像这样的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()语句,但我不太清楚如何实现它。
提前致谢!
答案 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)