import numpy as np import matplotlib.pyplot as plt # 1.数据准备 x = np.random.randn(30) y = np.random.randn(30) # 2.创建画布 plt.figure(figsize=(10, 4), dpi=80) # 3.绘制图像 plt.scatter(x, y) # 4.显示图像 plt.show()