📅  最后修改于: 2022-03-11 14:56:50.191000             🧑  作者: Mango
# solution to the problem
pd.set_option('display.max_columns', 1000)
#reset option to default value
pd.reset_option('display.max_rows')
pd.reset_option('display.max_columns')
#and reset all of them back:
pd.reset_option('all')