import pandas as pd
pd.set_option('display.expand_frame_repr',False)
pd.set_option('display.max_columns', None)
pd.set_option('display.max_rows', None)
注意必须有这一句, 否则设置不起作用
pd.set_option('display.expand_frame_repr',False)
import pandas as pd
pd.set_option('display.expand_frame_repr',False)
pd.set_option('display.max_columns', None)
pd.set_option('display.max_rows', None)
注意必须有这一句, 否则设置不起作用
pd.set_option('display.expand_frame_repr',False)