import pandas as pd

设定最大显示行数、列数为10000

pd.set_option('display.max_rows', 10000)
pd.set_option('display.max_columns', 10000)
pd.set_option('display.width', 10000)

主要针对以下情形:
图片