How to join two lists in Python

1 min

One of the easiest ways to join two lists is by using the + mathematical operator.

Here is how to do it

my_first_list = ["wow","amazing"]
my_second_list = [1,2,4,5]

my_third_list = my_first_list + my_second_list

Here you are! You now know how to join two lists!

More on fundamentals

If you want to know more about Python fundamentals without headaches... check out the other articles I wrote by clicking just here:

Fundamentals - The Python You Need
We gathered the only Python essentials that you will probably ever need.