1>>> plot(x, y, 'go--', linewidth=2, markersize=12)
2>>> plot(x, y, color='green', marker='o', linestyle='dashed',
3... linewidth=2, markersize=12)
4
1from matplotlib import pyplot as plt
2plt.plot([0, 1, 2, 3, 4, 5], [0, 1, 4, 9, 16, 25])
3plt.show()