「NumPy」タプルから配列を作るサンプル
書式
import numpy as np
tuple = (要素1,要素2,xxx)
配列名 =np.array(tuple)
使用例
import numpy as np '''タプルから配列を作る''' tuple = (22, 33, 66,77) resarr = np.array(tuple) print(resarr)
実行結果
[22 33 66 77]
Coding Changes the World
書式
import numpy as np
tuple = (要素1,要素2,xxx)
配列名 =np.array(tuple)
使用例
import numpy as np '''タプルから配列を作る''' tuple = (22, 33, 66,77) resarr = np.array(tuple) print(resarr)
実行結果
[22 33 66 77]