使用python中的jupyter qtconsole增加窗口中的列数

时间:2016-12-29 02:30:26

标签: python jupyter qtconsole jupyter-console

我正在运行QtConsole。每当我输出具有许多列的矩阵(例如)时,QtConsole将矩阵包装到下一行。然而,断点只是我窗外的一半..大量浪费空白。如何让QtConsole在其输出中使用更多列?

1 个答案:

答案 0 :(得分:0)

如果您正在使用numpy,请在np.set_printoptions处获取战利品。尝试调整linewidth参数;默认值为75.因此,可以运行np.set_printoptions(linewidth=150)并查看是否有帮助。