标签: python jupyter qtconsole jupyter-console
我正在运行QtConsole。每当我输出具有许多列的矩阵(例如)时,QtConsole将矩阵包装到下一行。然而,断点只是我窗外的一半..大量浪费空白。如何让QtConsole在其输出中使用更多列?
答案 0 :(得分:0)
如果您正在使用numpy,请在np.set_printoptions处获取战利品。尝试调整linewidth参数;默认值为75.因此,可以运行np.set_printoptions(linewidth=150)并查看是否有帮助。
np.set_printoptions
np.set_printoptions(linewidth=150)