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