Unpacking iterables into iterables PREMIUM

Trey Hunner smiling in a t-shirt against a yellow wall
Trey Hunner
3 min. read Watch as video Python 3.8—3.12

Let's talk about merging together different iterables into a new list.

Concatenating iterables using the + operator

If you have a couple of lists in Python, you can use the + operator to concatenate those lists (to make a new list that has all the values in the first and the second list).

Here we're concatenating two lists called numbers and more_numbers into a new list:

...

A Python Tip Every Week

Need to fill-in gaps in your Python skills? I send weekly emails designed to do just that.