“преобразовать строку в перечисление 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

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

>>> names='''
...       Apple
...       Ball
...       Cat'''
>>> names
'\n      Apple\n      Ball\n      Cat'
>>> names_list = [y for y in (x.strip() for x in names.splitlines()) if y]
>>> # if x.strip() is used to remove empty lines
>>> names_list
['Apple', 'Ball', 'Cat']
Upset Unicorn

строка для перечисления 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

def dpro(string):
    convertedlist = list(string.split(" "))
    return convertedlist
  
print(dpro("this will convert to List"))
Attractive Ape

Как изменить тип значений в списке с STR на Python Object

>>> list_a = ['20.3', '35', '10', '6.74', '323']
>>> list_a = map(float, list_a)
>>> list_a[0]*2
40.6
Selfish Seal

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

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

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

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

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