import pandas
matrix = [[None]*5]*4
matrix[1][1] = "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut"
matrix[1][4] = matrix[1][1]
print pandas.DataFrame(matrix) # will print the matrix,
# column 4 is completely underneath the other 3 columns with all rows
pandas.set_option('display.expand_frame_repr', False)
print pandas.DataFrame(matrix) # prints only one table (no break of columns)
4条答案
按热度按时间ztyzrc3y1#
对我来说,
pandas.set_option('display.expand_frame_repr', False)
是由@EdChum建议的。字符串
jogvjijk2#
这对我很有效,我使用python 2.7,并在Pycharm IDE上用3.6测试了它。
字符串
然而,对于Xueyter Notebooks,我相信这是语法:
型
qlvxas9a3#
这里没有一个解决方案在jupyter中对我有效,有效的是对CSS的吸引力:
字符串
我还没有测试过,但这也可能起作用:
型
yc0p9oo04#
当str是中文字符时,这些设置不起作用。下面是我的解决方案:
字符串