You can just use concatenation:
list = list_1 + list_2
If you don’t need to keep list_1 around, you can just modify it:
list_1.extend(list_2)
You can just use concatenation:
list = list_1 + list_2
If you don’t need to keep list_1 around, you can just modify it:
list_1.extend(list_2)