如何将分数乘以小数? [重复]

问题描述 投票:0回答:1

问题因无法删除而关闭

python math division
1个回答
2
投票
print(f'{a/b:.3f}')

格式化迷你语言手册:https://docs.python.org/3/library/string.html#formatspec

这会将

2/3
打印为
0.666
,如果您想要
0.667
,请使用
:.3g
代替。

  • f
    = 定点
  • g
    = 一般格式
© www.soinside.com 2019 - 2024. All rights reserved.