python numpyの配列の文字列からint型に変換するサンプル
環境
Python 3.9.13
Windows 10 Home 64bit
PyCharm 2022.2.1 (Community Edition)
書式
配列名 = np.array([文字列数値1, 文字列数値2, …])
np.array(配列名, dtype = int)
array関数のdtypeに型を指定して文字列型の配列をint型に変換します。
使用例
import numpy as np arr = np.array(["71", "82", "93"]) resarr = np.array(arr, dtype = int) print(resarr)
実行結果
[71 82 93]