Scatter

plt.scatter(valores_x, valores_y, s=50m c = "codigo color")

plt.show()

plot

plt.plot(valores_x, valores_y, "r--")
plt.show()

plt.figure(num =1)
plt.plot(x,y)

plt.figure(num =2)
plt.plot(x,y)

plt.figure(num =3)
plt.plot(x,y)

plt.plot(x, y1, "color", x, y2 , "color")
plt.show()
plt.plot(x1, y1, "color", x2, y2, "g*", x2_objetivo, y2_objetivo, "r*")
plt.show()