Spyder集成开发环境中,Python绘图如何让Y轴不以科学计数法显示

2025-04-02 01:50:19
推荐回答(1个)
回答1:

很简单只需两个语句:
import numpy as np
np.set_printoptions(suppress=True)
这样就可以搞定!