“Como dividir uma entrada em Python por vírgula” Respostas de código

Valores separados por vírgula de entrada de python

lst = input().split(',')
Relieved Ray

Como dividir uma entrada em Python por vírgula

lst = input().split(',')#can use any seperator value inside '' of split
print (lst)
#given input = hello,world
#output: ['hello', 'world']
#another example 
lst = input().split(' ; ')#can use any seperator value inside '' of split
print (lst)
#given input = hello ; world ; hi there
#output: ['hello', 'world', 'hi there']
Adhun Thalekkara

Como separar uma string ou int com vírgula em python

 string = input('Input')
    >>> 1,2
    print(cord.split(','))
    >>>['1', '2']
Disturbed Donkey

Respostas semelhantes a “Como dividir uma entrada em Python por vírgula”

Perguntas semelhantes a “Como dividir uma entrada em Python por vírgula”

Mais respostas relacionadas para “Como dividir uma entrada em Python por vírgula” em Python

Procure respostas de código populares por idioma

Procurar outros idiomas de código