标签: python format
有没有办法为Python模块tabulate定义格式样式(小数位数)?
tabulate
例如:
我的号码是 3.34643745 。
我想格式化小数位数,只打印出两位小数。
输出:3.34
3.34
答案 0 :(得分:5)
是的,你可以这样做:
print tabulate([["pi",3.141593],["e",2.718282]], floatfmt=".2f")
将打印:
-- ---- pi 3.14 e 2.71 -- ----
Here is a link to the documentation.