格式化输出
描述
用户输入一个小数,
用format格式化输出,保留3位小数。
m = eval(input())
print("{:.3f}".format(m));