astanin / python-tabulate

Pretty-print tabular data in Python, a library and a command-line utility. Repository migrated from bitbucket.org/astanin/python-tabulate.
https://pypi.org/project/tabulate/
MIT License
2.11k stars 163 forks source link

intfmt with disable_numparse=True will not work #235

Open ooodragon94 opened 1 year ago

ooodragon94 commented 1 year ago

disable_numparse=True will not allow intfmt I simply don't want scientific notation of the number but comma as thousand operator but it won't work...

ilya112358 commented 1 year ago

You get scientific notation only if you give float input. Integers will not be converted.

>>> print(tabulate([[10000000000000000000000000]], intfmt=','))
----------------------------------
10,000,000,000,000,000,000,000,000
----------------------------------

Please, provide an example which fails.