You have already completed these exercises!
Do you want to take them again?
You completed the Python Join Lists Exercises from W3Schools.com
Share on:
What is a correct syntax for joining list1 and list2 into list3?
list1
list2
list3
list3 = join(list1, list2)
list3 = list1 + list2
list3 = [list1, list2]