列表

详情


NP6. 牛牛的小数输出

描述

牛牛正在学习Python的输出,他想要使用print函数控制小数的位数,你能帮助它把所有读入的数据都保留两位小数输出吗?

输入描述

读入一个浮点类型小数。

输出描述

保留两位小数输出。

示例1

输入:

1.000000

输出:

1.00

原站题解

Python 解法, 执行用时: 12ms, 内存消耗: 2960KB, 提交时间: 2022-08-06

print("{:.2f}".format(float(raw_input())))

Python 解法, 执行用时: 12ms, 内存消耗: 2964KB, 提交时间: 2022-08-02

x=float(input())
print("{:.2f}".format(x))

Python 解法, 执行用时: 12ms, 内存消耗: 3040KB, 提交时间: 2022-07-27

a=input()
a=float(a)
a=("%.2f" %a)
print(a)

Python 解法, 执行用时: 13ms, 内存消耗: 2956KB, 提交时间: 2022-08-01

n = float(input())
print("%.2f" % n)

Python 解法, 执行用时: 13ms, 内存消耗: 2976KB, 提交时间: 2022-08-05

a=input()
print('%.2f'%a)

上一题