Comment convertir une étiquette d'axe en notation non scientifique dans Matplollib

fig, ax = plt.subplots()
ax.plot(range(2003,2012,1),range(200300,201200,100))
ax.ticklabel_format(useOffset=False)
ax.ticklabel_format(style='plain', axis='y')
plt.show()
Darkstar