在圣人中清理表格输出

时间:2017-06-08 19:43:31

标签: python formatting sage

正如标题所示,我正在尝试在Sage格式化为表格时更改输出的外观。对于较少量的数据,它看起来很好,例如。

enter image description here

但是,一旦右列有太多数据,它就会溢出:

enter image description here

正如您所看到的,不仅断线似乎变得混乱,而且右列可能会溢出到左侧,使数据显示不正确。我如何重新格式化后一种情况,以便它像第一个例子中那样出现?提前感谢您的任何帮助!

修改

这就是我现在正在使用的:

dictionary_right_sets = dict(...)

my_table = table([dictionary_right_sets.keys(), dictionary_right_sets.values()],
                 frame=True,
                 header_column=['Right set', 'Element(s) whose right set is contained in this right set'])
result_table = my_table.transpose()
print result_table

1 个答案:

答案 0 :(得分:1)

如果您使用的是其中一个笔记本界面(Jupyter或SageNB),请尝试仅评估result_table而不是print result_table。这会给你你想要的吗?