How do i concatenate two lists in python?

Example:

list1 = [1, 2, 3]
list2 = [4, 5, 6]
combined = list1 + list2
To concatenate two lists in Python, you can simply use the '+' operator.

Beginner's Guide to Python