“Строка Python для массива” Ответ

Строка Python для массива

>>> text = 'a b c'
>>> text = text.split(' ')
>>> text
[ 'a', 'b', 'c' ]
Doubtful Dingo

массив питона к строке

mystring = 'hello, world'

myarray = string1.split(', ') #output => [hello, world]

myjoin1 = ', '.join(myarray) #output => hello, world
myjoin2 = ' '.join(myarray) #output => hello world
myjoin3 = ','.join(myarray) #output => hello,world
NatanM

строка для массива python

str = "MillieB11"
arr = list(str)
print(arr)
#['M', 'i', 'l', 'l', 'i', 'e', 'B', '1', '1']
Hurt Hare

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

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

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

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

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