“chaîne python à la liste d'int” Réponses codées

convertir la liste des chaînes en ints python

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

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

chaîne python à la liste d'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

chaîne python à la liste d'int

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

Réponses similaires à “chaîne python à la liste d'int”

Questions similaires à “chaîne python à la liste d'int”

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code