Skip to content

Instantly share code, notes, and snippets.

@nuada
Created March 29, 2018 09:38
Show Gist options
  • Save nuada/97e4d1cc33966567c4c0b220511c0380 to your computer and use it in GitHub Desktop.
Save nuada/97e4d1cc33966567c4c0b220511c0380 to your computer and use it in GitHub Desktop.
Print all rows of a pandas DataFrame
with pd.option_context('display.max_rows', None, 'display.max_columns', 3):
print(df[['sequence', 'mismatches']])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment