“Array de string para flutuar Python” Respostas de código

Array de string para flutuar Python

import numpy as np
x = np.array(['1.1', '2.2', '3.3'])
y = x.astype(np.float)
print(y) # Output : [1.1, 2.2, 3.3]
Im_Arxus

converter todos os valores em matriz em flutuação

import numpy as np
x = np.array(['1.1', '2.2', '3.3'])
y = x.astype(np.float)
Terrible Tapir

Respostas semelhantes a “Array de string para flutuar Python”

Perguntas semelhantes a “Array de string para flutuar Python”

Mais respostas relacionadas para “Array de string para flutuar Python” em Python

Procure respostas de código populares por idioma

Procurar outros idiomas de código