You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When using commas in floatfmt, like ,.2f, alignment is off:
In [32]: print(tabulate([("a", 3456.321), ("b", 982.6513)], floatfmt=".2f"))
- -------
a 3456.32
b 982.65
- -------
In [33]: print(tabulate([("a", 3456.321), ("b", 982.6513)], floatfmt=",.2f"))
- -----------
a 3,456.32
b 982.65
- -----------
When using commas in
floatfmt, like,.2f, alignment is off: