Python数组合并

Python数组合并

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

c = a + b

print(c)
# [1, 2, 3, 4]
posted @ 2016-05-23 11:04  CooMark  阅读(4711)  评论(0编辑  收藏  举报