How can I get the concatenation of two lists in Python without modifying either one? [duplicate]

Yes: list1 + list2. This gives a new list that is the concatenation of list1 and list2.

Leave a Comment