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

преобразовать строку в перечисление Python

# To split the string at every character use the list() function
word = 'abc'
L = list(word)
L
# Output:
# ['a', 'b', 'c']

# To split the string at a specific character use the split() function
word = 'a,b,c'
L = word.split(',')
L
# Output:
# ['a', 'b', 'c']
SkelliBoi

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

# Python code to convert string to list
  
def Convert(string):
    li = list(string.split(" "))
    return li
  
# Driver code    
str1 = "Geeks for Geeks"
print(Convert(str1))
AVIGNAN NAG

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

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

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

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

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