python
# encoding = utf-8
# 开发者:xxx
# 开发时间: 21:45
# "Stay hungry,stay foolish."
import math
r = int(input())
S = math.pi*r*r
print(format(S,".7f"))
所用方法
format函数【四舍五入】
可以在print()打印处使用,也可以赋值给新的变量进行输出
# 四舍五入方法
a = 2.345566
print(format(a, '.4f'))
# 2.3456
print(format(a, '.3f'))
# 2.346
# 赋值给新的变量
c = format(a, '.4f')
print(c)
# 2.3456
3 直接截断【不进行四舍五入】
3.1 先放大指定倍数,后取整,后再除以指定倍数
1 保留三位小数:先×100,后int,后÷100
a = 2.345566
c = int(a * 100) / 100
print(c)
# 2.34
3.2 转为字符串进行字符串截取,截取小数点后指定的位数【不进行四舍五入】【不推荐有点麻烦】
4 round()函数【精确的四舍五入,但无法保证相同的小数位数】
round(number, ndigits=None)
返回小数点后四舍五入到ndigits精度的数字。如果ndigits被省略或为None,它将返回与其输入最近的整数。
注意:round()对于float的行为可能令人惊讶:例如,round(2.675,2)给出的是2.67,而不是预期的2.68。这不是一个错误:这是因为大多数十进制分数【decimal fractions】不能精确地表示为浮点值。