Python使用matplotlib绘图,如何在绘图结果上显示每个点的坐标

2024-11-07 21:13:55
有1个网友回答
网友(1):

import matplotlib.pyplot as plt  
import random
x1 = list(range(10))
y1 = [random.randint(0,10) for i in range(10)]  
plt.plot(x1, y1,  color='r',markerfacecolor='blue',marker='o')  
for a, b in zip(x1, y1):  
    plt.text(a, b, (a,b),ha='center', va='bottom', fontsize=10)  

plt.legend()  
plt.show()