Answers for "python typecast array to float32"

0

string array to float array 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]
Posted by: Guest on July-16-2021
5

python string list to float

[float(i) for i in lst]
Posted by: Guest on August-17-2020

Python Answers by Framework

Browse Popular Code Answers by Language