「NumPy」 配列の要素の型を指定するサンプル
書式
import numpy as np
np.array([要素1, 要素2,xxx], dtype = int)
array() 関数の第二引数で、”dtype =” を入力すると型を指定します。
使用例
import numpy as np arr = np.array([2, 3.8, 4,6.8], dtype = int) # int 型を指定。 print(arr)
実行結果
[2 3 4 6]
Coding Changes the World
書式
import numpy as np
np.array([要素1, 要素2,xxx], dtype = int)
array() 関数の第二引数で、”dtype =” を入力すると型を指定します。
使用例
import numpy as np arr = np.array([2, 3.8, 4,6.8], dtype = int) # int 型を指定。 print(arr)
実行結果
[2 3 4 6]