Python数组合并

Python数组合并

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

c = a + b

print(c)
# [1, 2, 3, 4]
原文地址:https://www.cnblogs.com/wancy86/p/python_arr_merge.html