How to Join Two Lists in Python

preview_player
Показать описание
In this tutorial you will learn how to join two lists in Python.
Рекомендации по теме
Комментарии
Автор

How to combine 2 lists like
a = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]
and
b = ['one', 'two', 'three', 'four', 'five', 'six', 'seven', 'eight', 'nine', 'ten']
to get
c = ['one', 1, 'two', 2, 'three', 3, 'four', 4, 'five', 5, 'six', 6, 'seven', 7, 'eight', 8, 'nine', 9, 'ten', 10]

АлександрДостоевски