“Список строк Python для перечисления” Ответ

Список на строку Python

list1 = [1, 2, 3]
str1 = ''.join(str(e) for e in list1)
Amused Antelope

Список строк Python для перечисления

>>> import ast
>>> x = '[ "A","B","C" , " D"]'
>>> x = ast.literal_eval(x)
>>> x
['A', 'B', 'C', ' D']
>>> x = [n.strip() for n in x]
>>> x
['A', 'B', 'C', 'D']
Fragile Gecko

Список на строку Python

list1 = ['1', '2', '3']
str1 = ''.join(list1)
Amused Antelope

Как преобразовать список в строку в Python

list_of_num = [1, 2, 3, 4, 5]
# Covert list of integers to a string
full_str = ' '.join([str(elem) for elem in list_of_num])
print(full_str)
Helpful Hamster

конвертировать список в String Python

my_list = ["Hello", 8, "World"]
string = " ".join(my_list)
print(string)
"""
output
Hello 8 World
"""
TheProgrammer

Список на строку Python

>>> L = [1,2,3]       
>>> " ".join(str(x) for x in L)
'1 2 3'
Amused Antelope

Ответы похожие на “Список строк Python для перечисления”

Вопросы похожие на “Список строк Python для перечисления”

Больше похожих ответов на “Список строк Python для перечисления” по Python

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

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