Skip to content

Instantly share code, notes, and snippets.

@berlotto
Created March 18, 2021 13:32
Show Gist options
  • Save berlotto/7192820adb2ea041e2b388d70d1da898 to your computer and use it in GitHub Desktop.
Save berlotto/7192820adb2ea041e2b388d70d1da898 to your computer and use it in GitHub Desktop.
# Configurar a exibição de dados no pandas (vale para o pdb/ipdb/web_pdb)
import pandas as pd
pd.set_option('display.max_rows', 500)
pd.set_option('display.max_columns', 500)
pd.set_option('display.width', 1000)
# o mesmo para numpy
import numpy
numpy.set_printoptions(linewidth=160)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment