Python的列表小数

时间:2016-05-06 19:22:00

标签: python format

有没有办法为Python模块tabulate定义格式样式(小数位数)?

例如:

我的号码是 3.34643745

我想格式化小数位数,只打印出两位小数。

输出:3.34

1 个答案:

答案 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.