如何查看全table

How to view the whole table

我正在尝试使用 quandl 获取 table(数据集)。 table 有 5 行 X 12 列,但它只在输出中显示 4 列,其余列由 3 个点替换。 我使用 Python:

编写了以下代码
import quandl
df = quandl.get('WIKI/GOOGL')
print(df.head())

输出请参考这张图片。

P.S.: 我尝试为这段代码使用不同的 IDE,但输出是相同的。

我找到了解决方案下面的代码将完美运行:

import pandas as pd
import quandl
df = quandl.get('WIKI/GOOGL')
pd.set_option('display.max_columns', None)
print(df.head())