Créer une limite à l'aide de matplotlib

axes = plt.gca()
axes.set_xlim([xmin,xmax])
axes.set_ylim([ymin,ymax])
Weary Wolverine