python画标签2023-09-26 15:30:22 plt.plot(w2,train2[0,:],label=‘A‘) plt.plot(w2,train2[1,:],label=‘B‘) plt.plot(w2,train2[2,:],label=‘C‘) plt.legend() plt.show() label表示你想用的标记名称。 plt.legend()用于显示。 python画标签上一篇:Python的两种格式化输出下一篇:Python把两个列表索引相同的值相加