Python Programming - Lists - Discussion

Discussion Forum : Lists - General Questions (Q.No. 72)
72.
How can you concatenate two lists in Python?
list1.append(list2)
list1.extend(list2)
list1.concat(list2)
list1 + list2
Answer: Option
Explanation:
Using the '+' operator concatenates two lists in Python.
Discussion:
Be the first person to comment on this question !

Post your comments here:

Your comments will be displayed after verification.