📌  相关文章
📜  删除科学记数法 python matplotlib - Python 代码示例

📅  最后修改于: 2022-03-11 14:46:18.655000             🧑  作者: Mango

代码示例1
fig, ax = plt.subplots()
ax.plot(range(2003,2012,1),range(200300,201200,100))
ax.ticklabel_format(style='plain') #This is the line you need <-------
plt.show()