“Convertendo a matriz de string em Int Array Python” Respostas de código

Converta a matriz de string em python inteiro

desired_array = [int(numeric_string) for numeric_string in current_array]
Zany Zebra

Convertendo a matriz de string em Int Array Python

T1 = ['13', '17', '18', '21', '32'] #list with numbers stored as string

T3 = list(map(int, T1))
print(T3) #prints [13, 17, 18, 21, 32]

#or
T4 = [int(x) for x in T1]
print(T4) #prints [13, 17, 18, 21, 32]
JussJan

matriz de string python ndarray em int

y = y.astype(np.uint8)
Saad Hassan

Respostas semelhantes a “Convertendo a matriz de string em Int Array Python”

Perguntas semelhantes a “Convertendo a matriz de string em Int Array Python”

Mais respostas relacionadas para “Convertendo a matriz de string em Int Array Python” em Python

Procure respostas de código populares por idioma

Procurar outros idiomas de código