Python How to join two list
By:Roy.LiuLast updated:2019-08-17
In Python, you can simply join two list with a plus + symbol like this:
list1 = [1,2,3] list2 = [4,5,6] list3 = list1 + list2 print list3 #[1, 2, 3, 4, 5, 6]
Note
Try to compare with this Java example – how to join arrays. Python really makes join list extremely easy.
Try to compare with this Java example – how to join arrays. Python really makes join list extremely easy.
From:一号门
Previous:Java 8 Streams filter examples
COMMENTS