Python Programming - Lists - Discussion

Discussion Forum : Lists - General Questions (Q.No. 15)
15.
How can you concatenate two lists in Python?
list1.concatenate(list2)
list1 + list2
list1.extend(list2)
list1.concat(list2)
Answer: Option
Explanation:
The + operator is used to concatenate 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.