copipe Python | ランダムな整数を生成する。

概要

np.random.randint(整数の範囲)を使って、ランダムな整数を生成することができる。整数の範囲を2にする0と1のランダムな2択となる。

コード

import numpy as np
for i in range(8):
    x = np.random.randint(3)
    print(x)

結果

2
1
0
0
2
1
2
0