📜  如何在 matplotlib 中指定符号 - 无论代码示例

📅  最后修改于: 2022-03-11 14:59:25.897000             🧑  作者: Mango

代码示例1
Specify coordinate then symbol then color
plt.plot(xCoord, yCoord, "*", "black")
Specify coordinate then shorthand for symbal and color. * is symbo
and k is the color black
plt.plot(xCoord, yCoord, "*k")