Afficher uniquement les valeurs entières matplotlib

from matplotlib.ticker import MaxNLocator

ax = plt.figure().gca()
ax.yaxis.set_major_locator(MaxNLocator(integer=True))
Real Raccoon