# Describe() formatted # Format numbers without scientific notation and with thousands separators # Uses a lambda function to apply the formatting to every number # See https://stackoverflow.com/a/47207283 # See also https://mkaz.blog/code/python-string-format-cookbook/ # To change the number of decimals, change the number before the f # To remove the thousands separator remove the comma df.describe().apply(lambda s: s.apply('{:,.0f}'.format)) # Use .map for a series df['Column'].describe().map('{:,.0f}'.format)