>我正在尝试使用熊猫以结构化格式打印表格我的代码:
dfs = pd.read_html(url,header = 0)
for df in dfs:
print(dfs)
网址是一个维基页面例如
0 name age tick
1 aaa 22 s
2 sss 11 e
但我得到
0 name
1 aaa
2 sss
age
22
11
喜欢垂直请帮忙
请参阅有关set_option http://pandas.pydata.org/pandas-docs/stable/generated/pandas.set_option.html 的文档。尝试摆弄这些:
pd.set_option('display.height', 1000)
pd.set_option('display.max_rows', 500)
pd.set_option('display.max_columns', 500)
pd.set_option('display.width', 1000)