The easiest way is to use "marker" in plot:
from matplotlib import pyplot import numpy as np t = np.linspace(-2, 2, 100) plt.plot(t, np.sin(t), marker='<') plt.show()