Bootstrap

Python matplotlib画坐标点并且以文本内容标记

import matplotlib.pyplot as plt

x_point = [2,-2]
y_point = [2,-2]
plt.scatter(x_point,y_point)
plt.xlim
;