“string python para listar int” Respostas de código

Converter Lista de Strings em Ints Python

test_list = ['1', '4', '3', '6', '7'] 

int_list = [int(i) for i in test_list]
EDestroyer

string python para listar int

>>> example_string = '0, 0, 0, 11, 0, 0, 0, 0, 0, 19, 0, 9, 0, 0, 0, 0, 0, 0, 11'
>>> list(map(int, example_string.split(',')))  # Python 3, in Python 2 the list() call is redundant
[0, 0, 0, 11, 0, 0, 0, 0, 0, 19, 0, 9, 0, 0, 0, 0, 0, 0, 11]
>>> [int(s) for s in example_string.split(',')]
[0, 0, 0, 11, 0, 0, 0, 0, 0, 19, 0, 9, 0, 0, 0, 0, 0, 0, 11]
Unusual Unicorn

string python para listar int

[int(s) for s in example_string.split(',')]
Unusual Unicorn

Respostas semelhantes a “string python para listar int”

Perguntas semelhantes a “string python para listar int”

Procure respostas de código populares por idioma

Procurar outros idiomas de código