用Python产生随机数并绘制出这些数的直方图
时间: 2023-07-19 07:18:48 浏览: 99
python 实现随机数
好的,可以使用Python中的random模块产生随机数,使用matplotlib库绘制直方图。
以下是示例代码:
```python
import random
import matplotlib.pyplot as plt
# 产生1000个范围在0~100之间的随机数
random_numbers = [random.randint(0, 100) for _ in range(1000)]
# 绘制直方图
plt.hist(random_numbers, bins=20)
plt.xlabel('随机数范围')
plt.ylabel('频数')
plt.title('随机数直方图')
plt.show()
```
运行代码后,将会弹出一个窗口显示随机数的直方图。
阅读全文