BC4 牛牛学说话之-浮点数

思路:

该题不能使用round()函数,因为这样会吞0;故使用format(n,'.Xf')
step1:输入浮点数,然后使用format(n,'.Xf')

代码如下:

n = float(input())
print(format(n,'.3f'))