“Как вручить список в Python” Ответ

Python, как разыгрывать вложенный список

# Basic syntax:
unnested_list = list(chain(*nested_list))
# Where chain comes from the itertools package and is useful for 
#	unnesting any iterables

# Example usage:
from itertools import chain
nested_list = [[1,2], [3,4]]
my_unnested_list = list(chain(*nested_list))
print(my_unnested_list)
--> [1, 2, 3, 4]
Charles-Alexandre Roy

Как вручить список в Python

a_list=["hello","there","little","kid",":)"]
not_a_list=" ".join(a_list)
print(not_a_list)
#==> "hello there little kid :)"
Shiny Seal

Ответы похожие на “Как вручить список в Python”

Вопросы похожие на “Как вручить список в Python”

Смотреть популярные ответы по языку

Смотреть другие языки программирования