レンジ[範囲]
100から100万までの整数の中から1000個の乱数を取り出してレンジ[範囲]を計算する.
import numpy as np import matplotlib.pyplot as plt a = np.random.randint(100, 1000000, 1000) plt.hist(a,bins=50) max_a=np.max(a) min_a=np.min(a) range_a=max_a-min_a print(max_a,min_a,range_a)
Mathematics is the language with which God has written the universe.