发布网友 发布时间:2022-04-24 04:31
共3个回答
热心网友 时间:2022-04-07 06:27
第一种方法:x = round(x,3)
第二种方法:x = {0:.3f}".format(x)
第三种方法:print('%5.3f' % x)
热心网友 时间:2022-04-07 07:45
x=3.1191
y=2.3432
z=0.7
g = float("{0:.2f}".format(x))
e = float("{0:.2f}".format(y))
f = float("{0:.3f}".format(z))
print g,e,f
热心网友 时间:2022-04-07 09:20
a=float(input())
print("{:.2g}".format(a))