How do you concatenate an array in Python?
concatenation of two or more lists in Python :-
There very several and very easy way to join, or concatenate two or more list in Python. For Example -
- list1=[1,23,6,5,9,7]
- list2=[4,5,6,7,8,9]
- list3=list1+list2
- print(list3)
Comments
Post a Comment