「NumPy」配列ndarrayの引数でdtypeを指定する
環境
Python3.9.2
PyCharm 2021.3.3
書式
np.array([要素1, xxx], dtype=int)
np.array([要素2, xxx], dtype=’int’)
NumPy配列ndarrayはデータ型dtypeをしています。
使用例
import numpy as np print("引数でintを指定") h = np.array([4, 5, 6], dtype=int) print(h.dtype) print("引数で文字列'int'を指定") b = np.array([7, 8, 9], dtype='int') print(b.dtype)
実行結果
引数でintを指定
int32
引数で文字列’int’を指定
int32