-
Notifications
You must be signed in to change notification settings - Fork 177
Closed
Description
With tabulate 0.9.0 on Python 3.9:
$ python -c "from tabulate import tabulate; print(tabulate([['1E10']]))"
-----
1e+10
-----
When the value goes beyond a certain limit (the upper limit for 64-bit Python float), it accepts that it is a string:
$ python -c "from tabulate import tabulate; print(tabulate([['1E308']]))"
------
1e+308
------
$ python -c "from tabulate import tabulate; print(tabulate([['1E309']]))"
-----
1E309
-----
Metadata
Metadata
Assignees
Labels
No labels