numpy 関数ndarray.fillの使い方の例 2023年2月23日 8181yuuta 関数の機能:全ての要素を指定した値で埋める >>> a = np.array([5, 1, 3]) >>> a.fill(7) >>> a array([7, 7, 7])