怎样合并两个列表?
例如:
listone = [1,2,3] listtwo = [4,5,6]
我期待:
mergedlist == [1, 2, 3, 4, 5, 6]
在Python中非常容易.
mergedlist = listone + listtwo