Main Tutorials

Python – How to join two list

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.

About Author

author image
Founder of Mkyong.com, love Java and open source stuff. Follow him on Twitter. If you like my tutorials, consider make a donation to these charities.

Comments

Subscribe
Notify of
0 Comments
Inline Feedbacks
View all comments