0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

Numpy Arryay で 多次元配列 の作成【作業用コピペ】

Posted at

ライブラリのインストール Numpy
import numpy as np

乱数用の変数作成

#多次元配列を作成する2つの例
#np.array #np.arange

data = np.array({1, 2 , 3, 4, 5})
data

data = np.arange(10)
data

for i in range(10):
print(i)
0
1
2
3
4
5
6
7
8
9

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?