How do I concatenate two lists in Python?
Asked 07 September, 2021
Viewed 3K times
  • 50
Votes

How do I concatenate two lists in Python?

Example:

listone = [1, 2, 3]
listtwo = [4, 5, 6]

Expected outcome:

>>> joinedlist
[1, 2, 3, 4, 5, 6]

29 Answer